Skip to content

Instantly share code, notes, and snippets.

@julesbou
Created March 11, 2016 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save julesbou/4e1cef9136ec58b8c20d to your computer and use it in GitHub Desktop.
Save julesbou/4e1cef9136ec58b8c20d to your computer and use it in GitHub Desktop.
Backbone.Collection.prototype.search = function(test) {
return this.filter(function(model) {
return model.match(test);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment