summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/math/base_convert.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/math/base_convert.js')
-rw-r--r--node_modules/locutus/php/math/base_convert.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/node_modules/locutus/php/math/base_convert.js b/node_modules/locutus/php/math/base_convert.js
deleted file mode 100644
index ac2c8cc..0000000
--- a/node_modules/locutus/php/math/base_convert.js
+++ /dev/null
@@ -1,13 +0,0 @@
-'use strict';
-
-module.exports = function base_convert(number, frombase, tobase) {
- // eslint-disable-line camelcase
- // discuss at: http://locutus.io/php/base_convert/
- // original by: Philippe Baumann
- // improved by: RafaƂ Kukawski (http://blog.kukawski.pl)
- // example 1: base_convert('A37334', 16, 2)
- // returns 1: '101000110111001100110100'
-
- return parseInt(number + '', frombase | 0).toString(tobase | 0);
-};
-//# sourceMappingURL=base_convert.js.map \ No newline at end of file