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/dechex.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 node_modules/locutus/php/math/dechex.js (limited to 'node_modules/locutus/php/math/dechex.js') diff --git a/node_modules/locutus/php/math/dechex.js b/node_modules/locutus/php/math/dechex.js new file mode 100644 index 0000000..361d8ce --- /dev/null +++ b/node_modules/locutus/php/math/dechex.js @@ -0,0 +1,21 @@ +"use strict"; + +module.exports = function dechex(number) { + // discuss at: http://locutus.io/php/dechex/ + // original by: Philippe Baumann + // 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 + // example 1: dechex(10) + // returns 1: 'a' + // example 2: dechex(47) + // returns 2: '2f' + // example 3: dechex(-1415723993) + // returns 3: 'ab9dc427' + + if (number < 0) { + number = 0xFFFFFFFF + number + 1; + } + return parseInt(number, 10).toString(16); +}; +//# sourceMappingURL=dechex.js.map \ No newline at end of file -- cgit v1.2.3