uniq

Removes all duplicates from an array in place.

Usage

First install using npm:

npm install uniq

Then use it as follows:

```javascript

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