Skip to content

Instantly share code, notes, and snippets.

@aaccurso
Created July 15, 2014 12:41
Show Gist options
  • Save aaccurso/3d22d696e4f17bb4ae77 to your computer and use it in GitHub Desktop.
Save aaccurso/3d22d696e4f17bb4ae77 to your computer and use it in GitHub Desktop.
'use strict';
angular.module('myApp.filters')
.filter('offset', function() {
return function(input, start) {
start = parseInt(start, 10);
return input.slice(start);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment