Sha256: 28b8c2e35e053a51bcfc08761256fc4a790e78782e56236e83e055faed1a0607

Contents?: true

Size: 1.19 KB

Versions: 113

Compression:

Stored size: 1.19 KB

Contents

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.

* `array` is the array to remove items from
* `compare` is an optional comparison function that returns 0 when two items are equal, and something non-zero when they are different.  If unspecified, then the default equals will be used.
* `sorted` if true, then assume array is already sorted

**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:

* This library updates the array in place without making an extra copy (and so it is faster for large arrays)
* It also accepts a custom comparison function so you can remove duplicates from arrays containing object
* It is more modular in the sense that it doesn't come with a bazillion other utility grab bag functions.

# Credits
(c) 2013 Mikola Lysenko. MIT License

Version data entries

113 entries across 112 versions & 15 rubygems

Version Path
boring_generators-0.15.0 tmp/templates/app_template/node_modules/uniq/README.md
boring_generators-0.14.0 tmp/templates/app_template/node_modules/uniq/README.md
optimacms-0.1.61 spec/dummy/node_modules/uniq/README.md
boring_generators-0.13.0 tmp/templates/app_template/node_modules/uniq/README.md
boring_generators-0.12.0 tmp/templates/app_template/node_modules/uniq/README.md
disco_app-0.18.0 test/dummy/node_modules/uniq/README.md
disco_app-0.18.2 test/dummy/node_modules/uniq/README.md
trusty-cms-5.0.7 node_modules/uniq/README.md
trusty-cms-5.0.6 node_modules/uniq/README.md
trusty-cms-5.0.5 node_modules/uniq/README.md
trusty-cms-5.0.4 node_modules/uniq/README.md
disco_app-0.16.1 test/dummy/node_modules/uniq/README.md
disco_app-0.15.2 test/dummy/node_modules/uniq/README.md
trusty-cms-5.0.3 node_modules/uniq/README.md
trusty-cms-5.0.2 node_modules/uniq/README.md
disco_app-0.18.4 test/dummy/node_modules/uniq/README.md
disco_app-0.18.1 test/dummy/node_modules/uniq/README.md
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/uniq/README.md
disco_app-0.14.0 test/dummy/node_modules/uniq/README.md
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/uniq/README.md