From 954583f3d56fbfb60321725f13ad092e536e3737 Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Wed, 7 Nov 2018 22:10:16 +0100
Subject: Removed node_modules

---
 node_modules/locutus/php/strings/hex2bin.js | 28 ----------------------------
 1 file changed, 28 deletions(-)
 delete 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
deleted file mode 100644
index ef0331b..0000000
--- a/node_modules/locutus/php/strings/hex2bin.js
+++ /dev/null
@@ -1,28 +0,0 @@
-'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