summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/math/base_convert.js.map
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/math/base_convert.js.map')
-rw-r--r--node_modules/locutus/php/math/base_convert.js.map1
1 files changed, 0 insertions, 1 deletions
diff --git a/node_modules/locutus/php/math/base_convert.js.map b/node_modules/locutus/php/math/base_convert.js.map
deleted file mode 100644
index 0972da2..0000000
--- a/node_modules/locutus/php/math/base_convert.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../../src/php/math/base_convert.js"],"names":["module","exports","base_convert","number","frombase","tobase","parseInt","toString"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,YAAT,CAAuBC,MAAvB,EAA+BC,QAA/B,EAAyCC,MAAzC,EAAiD;AAAE;AAClE;AACA;AACA;AACA;AACA;;AAEA,SAAOC,SAASH,SAAS,EAAlB,EAAsBC,WAAW,CAAjC,EACJG,QADI,CACKF,SAAS,CADd,CAAP;AAED,CATD","file":"base_convert.js","sourcesContent":["module.exports = function base_convert (number, frombase, tobase) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/base_convert/\n // original by: Philippe Baumann\n // improved by: RafaƂ Kukawski (http://blog.kukawski.pl)\n // example 1: base_convert('A37334', 16, 2)\n // returns 1: '101000110111001100110100'\n\n return parseInt(number + '', frombase | 0)\n .toString(tobase | 0)\n}\n"]} \ No newline at end of file