mirror of
https://github.com/thangisme/notes.git
synced 2025-09-25 22:34:05 -04:00
Initial commit
This commit is contained in:
57
node_modules/uniq/uniq.js
generated
vendored
Normal file
57
node_modules/uniq/uniq.js
generated
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
"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
|
Reference in New Issue
Block a user