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/decbin.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 node_modules/locutus/php/math/decbin.js (limited to 'node_modules/locutus/php/math/decbin.js') diff --git a/node_modules/locutus/php/math/decbin.js b/node_modules/locutus/php/math/decbin.js new file mode 100644 index 0000000..7cdd4a9 --- /dev/null +++ b/node_modules/locutus/php/math/decbin.js @@ -0,0 +1,22 @@ +"use strict"; + +module.exports = function decbin(number) { + // discuss at: http://locutus.io/php/decbin/ + // original by: Enrique Gonzalez + // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman) + // improved by: http://stackoverflow.com/questions/57803/how-to-convert-decimal-to-hex-in-javascript + // input by: pilus + // input by: nord_ua + // example 1: decbin(12) + // returns 1: '1100' + // example 2: decbin(26) + // returns 2: '11010' + // example 3: decbin('26') + // returns 3: '11010' + + if (number < 0) { + number = 0xFFFFFFFF + number + 1; + } + return parseInt(number, 10).toString(2); +}; +//# sourceMappingURL=decbin.js.map \ No newline at end of file -- cgit v1.2.3