aboutsummaryrefslogtreecommitdiff
path: root/node_modules/clean-css/lib/utils/natural-compare.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/clean-css/lib/utils/natural-compare.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/clean-css/lib/utils/natural-compare.js')
-rw-r--r--node_modules/clean-css/lib/utils/natural-compare.js31
1 files changed, 0 insertions, 31 deletions
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;