-
-
Save tobiastom/387619 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.prototype.unique = function() { | |
var uniqueKeys = {}; | |
var items = this.length; | |
while ( items ) { | |
uniqueKeys[ this[ --items ] ] = true; | |
} | |
var uniqueArray = []; | |
for ( var key in uniqueKeys ) { | |
if ( !uniqueKeys.hasOwnProperty( key ) ) { | |
continue; | |
} | |
uniqueArray.push( key ); | |
} | |
return uniqueArray; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment