Remove unnecessary semicolons

This commit is contained in:
Nick Downie 2015-01-03 15:40:47 +00:00
parent 2e4bb1899f
commit 81d4f97abc

View File

@ -238,7 +238,7 @@
if (filterCallback(currentItem)){
return currentItem;
}
};
}
},
findPreviousWhere = helpers.findPreviousWhere = function(arrayToSearch, filterCallback, startIndex){
// Default to end of the array
@ -250,7 +250,7 @@
if (filterCallback(currentItem)){
return currentItem;
}
};
}
},
inherits = helpers.inherits = function(extensions){
//Basic javascript inheritance based on the model created in Backbone.js