/ stream.nieuweinstituut.nl / node_modules / uniq /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]test/2 years ago -  
[   ]uniq.js11 years ago910  
[   ]LICENSE12 years ago1.1K 
[TXT]README.md12 years ago1.2Kd768d73 docs [كارل مبارك]
[   ]package.json2 years ago1.6K3e510ca test new git [كارل مبارك]
README.md

uniq

Removes all duplicates from an array in place.

Usage

First install using npm:

npm install uniq

Then use it as follows:


var arr = [1, 1, 2, 2, 3, 5]

require("uniq")(arr)
console.log(arr)

//Prints:
//
//  1,2,3,5
//

require("uniq")(array[, compare, sorted])

Removes all duplicates from a sorted array in place.

Returns: A reference to array

Time Complexity: O(array.length * log(arra.length)) or O(array.length) if sorted

Why use this instead of underscore.uniq[ue]?

A few reasons:

Credits

(c) 2013 Mikola Lysenko. MIT License

Apache/2.4.38 (Debian) Server at www.karls.computer Port 80