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/strnatcasecmp.js | 27 ----------------------- 1 file changed, 27 deletions(-) delete mode 100644 node_modules/locutus/php/strings/strnatcasecmp.js (limited to 'node_modules/locutus/php/strings/strnatcasecmp.js') diff --git a/node_modules/locutus/php/strings/strnatcasecmp.js b/node_modules/locutus/php/strings/strnatcasecmp.js deleted file mode 100644 index 5c7437a..0000000 --- a/node_modules/locutus/php/strings/strnatcasecmp.js +++ /dev/null @@ -1,27 +0,0 @@ -'use strict'; - -module.exports = function strnatcasecmp(a, b) { - // discuss at: http://locutus.io/php/strnatcasecmp/ - // original by: Martin Pool - // reimplemented by: Pierre-Luc Paour - // reimplemented by: Kristof Coomans (SCK-CEN (Belgian Nucleair Research Centre)) - // reimplemented by: Brett Zamir (http://brett-zamir.me) - // bugfixed by: Kevin van Zonneveld (http://kvz.io) - // input by: Devan Penner-Woelk - // improved by: Kevin van Zonneveld (http://kvz.io) - // reimplemented by: RafaƂ Kukawski - // example 1: strnatcasecmp(10, 1) - // returns 1: 1 - // example 2: strnatcasecmp('1', '10') - // returns 2: -1 - - var strnatcmp = require('../strings/strnatcmp'); - var _phpCastString = require('../_helpers/_phpCastString'); - - if (arguments.length !== 2) { - return null; - } - - return strnatcmp(_phpCastString(a).toLowerCase(), _phpCastString(b).toLowerCase()); -}; -//# sourceMappingURL=strnatcasecmp.js.map \ No newline at end of file -- cgit v1.2.3