doc: ported and updated old doc for Array#uniq

This commit is contained in:
tjcrowder 2009-09-07 13:07:03 +01:00 committed by Tobie Langel
parent e98c87d681
commit a3eaa0401f
1 changed files with 11 additions and 0 deletions

View File

@ -254,6 +254,17 @@ Array.from = $A;
*
* Produces a duplicate-free version of an array. If no duplicates are
* found, the original array is returned.
*
* On large arrays when `sorted` is `false`, this method has a potentially
* large performance cost.
*
* ### Examples
*
* [1, 3, 2, 1].uniq();
* // -> [1, 2, 3]
*
* ['A', 'a'].uniq();
* // -> ['A', 'a'] (because String comparison is case-sensitive)
**/
function uniq(sorted) {
return this.inject([], function(array, value, index) {