Skip to content

Instantly share code, notes, and snippets.

@gregwym
Created August 13, 2014 22:00
Show Gist options
  • Save gregwym/ee098d0bb37df7eb5ffc to your computer and use it in GitHub Desktop.
Save gregwym/ee098d0bb37df7eb5ffc to your computer and use it in GitHub Desktop.
Moment.js Angular filter
angular.module('myApp', [])
.filter('moment', [
function () {
return function (date, method) {
var momented = moment(date);
return momented[method].apply(momented, Array.prototype.slice.call(arguments, 2));
};
}
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment