Here you can find the source of unique()
Array.prototype.unique = function() { var array = []; var l = this.length; for(var i=0; i<l; i++) { for(var j=i+1; j<l; j++) { if (this[i] === this[j]) j = ++i; }/* w ww. jav a 2 s .com*/ array.push(this[i]); } return(array); };
Array.prototype.unique = function () { return this.filter(function (value, index, array) { return array.indexOf(value) === index; }); };
'use strict'; Array.prototype.unique = function() { var newArray = []; for (var i = 0, l = this.length; i < l; i++) { if (newArray.indexOf(this[i]) === -1 && this[i] !== '') { newArray.push(this[i]); return newArray; ...
Array.prototype.unique = function() { var a = []; var l = this.length; for ( var i = 0; i < l; i++) { for ( var j = i + 1; j < l; j++) { if (this[i] === this[j]) j = ++i; a.push(this[i]); ...
var fs = require('fs'); Array.prototype.unique = function() { var res = [], hash = {}; for (var i = 0, elem; (elem = this[i]) != null; i++) { if (!hash[elem]) { res.push(elem); hash[elem] = true; ...
Array.prototype.unique = function() { var seen = {} return this.filter(function(x) { if (seen[x]) return seen[x] = true return x })
Array.prototype.unique = function () { var r = new Array(); o:for(var i = 0, n = this.length; i < n; i++) for(var x = 0, y = r.length; x < y; x++) if(r[x]==this[i]) continue o; ...
Array.prototype.unique = function() { return this.reduce(function(p, c) { if (p.indexOf(c) < 0) p.push(c); return p; }, []);
function stringToBoolean(string) { switch(string.toLowerCase()) { case "true": case "yes": case "1": return true; case "false": case "no": case "0": case null: return false; default: return string; Array.prototype.unique = function() { var o = {}, ...
Array.prototype.unique = function() { var a=[]; for (var b = 0; b < this.length; b++) { if(a.indexOf(this[b]) == -1) { a.push(this[b]) return a