Skip to content
Snippets Groups Projects
Commit f1878822 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

Task #9607: added unique function to Array prototype

parent a99c97ba
No related branches found
No related tags found
No related merge requests found
......@@ -43,3 +43,17 @@ var secondsToHHmmss = function(seconds) {
app.filter('secondsToHHmmss', function($filter) {
return secondsToHHmmss;
})
//filter unique items in array
Array.prototype.unique = function() {
var unique = [];
var length = this.length;
for (var i = 0; i < length; i++) {
var item = this[i];
if (unique.indexOf(item) == -1) {
unique.push(item);
}
}
return unique;
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment