From 824a2d9f587ca017fc71b84d835e72f54f9c87c4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 7 Nov 2018 18:02:36 +0100 Subject: Began rewrite --- node_modules/locutus/php/math/base_convert.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 node_modules/locutus/php/math/base_convert.js (limited to 'node_modules/locutus/php/math/base_convert.js') diff --git a/node_modules/locutus/php/math/base_convert.js b/node_modules/locutus/php/math/base_convert.js new file mode 100644 index 0000000..ac2c8cc --- /dev/null +++ b/node_modules/locutus/php/math/base_convert.js @@ -0,0 +1,13 @@ +'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 -- cgit v1.2.3