Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/uniq/uniq.js')
-rw-r--r--assets/node_modules/uniq/uniq.js57
1 files changed, 0 insertions, 57 deletions
diff --git a/assets/node_modules/uniq/uniq.js b/assets/node_modules/uniq/uniq.js
deleted file mode 100644
index e86c44b..0000000
--- a/assets/node_modules/uniq/uniq.js
+++ /dev/null
@@ -1,57 +0,0 @@
-"use strict"
-
-function unique_pred(list, compare) {
- var ptr = 1
- , len = list.length
- , a=list[0], b=list[0]
- for(var i=1; i<len; ++i) {
- b = a
- a = list[i]
- if(compare(a, b)) {
- if(i === ptr) {
- ptr++
- continue
- }
- list[ptr++] = a
- }
- }
- list.length = ptr
- return list
-}
-
-function unique_eq(list) {
- var ptr = 1
- , len = list.length
- , a=list[0], b = list[0]
- for(var i=1; i<len; ++i, b=a) {
- b = a
- a = list[i]
- if(a !== b) {
- if(i === ptr) {
- ptr++
- continue
- }
- list[ptr++] = a
- }
- }
- list.length = ptr
- return list
-}
-
-function unique(list, compare, sorted) {
- if(list.length === 0) {
- return list
- }
- if(compare) {
- if(!sorted) {
- list.sort(compare)
- }
- return unique_pred(list, compare)
- }
- if(!sorted) {
- list.sort()
- }
- return unique_eq(list)
-}
-
-module.exports = unique