From cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 27 Mar 2019 21:01:33 +0100 Subject: remove node_modules --- .../clean-css/lib/utils/natural-compare.js | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 node_modules/clean-css/lib/utils/natural-compare.js (limited to 'node_modules/clean-css/lib/utils/natural-compare.js') diff --git a/node_modules/clean-css/lib/utils/natural-compare.js b/node_modules/clean-css/lib/utils/natural-compare.js deleted file mode 100644 index 7a5246762..000000000 --- a/node_modules/clean-css/lib/utils/natural-compare.js +++ /dev/null @@ -1,31 +0,0 @@ -// adapted from http://nedbatchelder.com/blog/200712.html#e20071211T054956 - -var NUMBER_PATTERN = /([0-9]+)/; - -function naturalCompare(value1, value2) { - var keys1 = ('' + value1).split(NUMBER_PATTERN).map(tryParseInt); - var keys2 = ('' + value2).split(NUMBER_PATTERN).map(tryParseInt); - var key1; - var key2; - var compareFirst = Math.min(keys1.length, keys2.length); - var i, l; - - for (i = 0, l = compareFirst; i < l; i++) { - key1 = keys1[i]; - key2 = keys2[i]; - - if (key1 != key2) { - return key1 > key2 ? 1 : -1; - } - } - - return keys1.length > keys2.length ? 1 : (keys1.length == keys2.length ? 0 : -1); -} - -function tryParseInt(value) { - return ('' + parseInt(value)) == value ? - parseInt(value) : - value; -} - -module.exports = naturalCompare; -- cgit v1.2.3