Skip to content

Instantly share code, notes, and snippets.

@miguelbermudez
Created July 28, 2014 19:34
Show Gist options
  • Save miguelbermudez/d5091aba4f0888b4e580 to your computer and use it in GitHub Desktop.
Save miguelbermudez/d5091aba4f0888b4e580 to your computer and use it in GitHub Desktop.
"Start From" Filter
.filter('startFrom', function() {
return function(input, start) {
if (input) {
start = +start; //parse to int
return input.slice(start);
}
return [];
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment