summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/strings/hex2bin.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 18:02:36 +0100
committerMarvin Borner2018-11-07 18:02:36 +0100
commit824a2d9f587ca017fc71b84d835e72f54f9c87c4 (patch)
tree765267ea4686f752aad1f69930cfee5680cc494a /node_modules/locutus/php/strings/hex2bin.js
parentfe75612e86b493a4e66c4e104e22658679cc014f (diff)
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/strings/hex2bin.js')
-rw-r--r--node_modules/locutus/php/strings/hex2bin.js28
1 files changed, 28 insertions, 0 deletions
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