summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/math/hexdec.js.map
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/math/hexdec.js.map')
-rw-r--r--node_modules/locutus/php/math/hexdec.js.map1
1 files changed, 1 insertions, 0 deletions
diff --git a/node_modules/locutus/php/math/hexdec.js.map b/node_modules/locutus/php/math/hexdec.js.map
new file mode 100644
index 0000000..8f9fa1e
--- /dev/null
+++ b/node_modules/locutus/php/math/hexdec.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/math/hexdec.js"],"names":["module","exports","hexdec","hexString","replace","parseInt"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,SAAjB,EAA4B;AAC3C;AACA;AACA;AACA;AACA;AACA;;AAEAA,cAAY,CAACA,YAAY,EAAb,EAAiBC,OAAjB,CAAyB,aAAzB,EAAwC,EAAxC,CAAZ;AACA,SAAOC,SAASF,SAAT,EAAoB,EAApB,CAAP;AACD,CAVD","file":"hexdec.js","sourcesContent":["module.exports = function hexdec (hexString) {\n // discuss at: http://locutus.io/php/hexdec/\n // original by: Philippe Baumann\n // example 1: hexdec('that')\n // returns 1: 10\n // example 2: hexdec('a0')\n // returns 2: 160\n\n hexString = (hexString + '').replace(/[^a-f0-9]/gi, '')\n return parseInt(hexString, 16)\n}\n"]} \ No newline at end of file