Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 449 Bytes

.verb.md

File metadata and controls

16 lines (12 loc) · 449 Bytes

Usage

var unique = require('{%= name %}');

var arr = ['a', 'b', 'c', 'c'];
console.log(unique(arr)) //=> ['a', 'b', 'c']
console.log(arr)         //=> ['a', 'b', 'c']

/* The above modifies the input array. To prevent that at a slight performance cost: */
var unique = require("array-unique").immutable;

var arr = ['a', 'b', 'c', 'c'];
console.log(unique(arr)) //=> ['a', 'b', 'c']
console.log(arr)         //=> ['a', 'b', 'c', 'c']