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/strings/hex2bin.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 node_modules/locutus/php/strings/hex2bin.js (limited to 'node_modules/locutus/php/strings/hex2bin.js') diff --git a/node_modules/locutus/php/strings/hex2bin.js b/node_modules/locutus/php/strings/hex2bin.js new file mode 100644 index 0000000..ef0331b --- /dev/null +++ b/node_modules/locutus/php/strings/hex2bin.js @@ -0,0 +1,28 @@ +'use strict'; + +module.exports = function hex2bin(s) { + // discuss at: http://locutus.io/php/hex2bin/ + // original by: Dumitru Uzun (http://duzun.me) + // example 1: hex2bin('44696d61') + // returns 1: 'Dima' + // example 2: hex2bin('00') + // returns 2: '\x00' + // example 3: hex2bin('2f1q') + // returns 3: false + + var ret = []; + var i = 0; + var l; + + s += ''; + + for (l = s.length; i < l; i += 2) { + var c = parseInt(s.substr(i, 1), 16); + var k = parseInt(s.substr(i + 1, 1), 16); + if (isNaN(c) || isNaN(k)) return false; + ret.push(c << 4 | k); + } + + return String.fromCharCode.apply(String, ret); +}; +//# sourceMappingURL=hex2bin.js.map \ No newline at end of file -- cgit v1.2.3