Skip to content

Instantly share code, notes, and snippets.

@rsvalerio
Created March 7, 2013 01:39
Show Gist options
  • Save rsvalerio/5104870 to your computer and use it in GitHub Desktop.
Save rsvalerio/5104870 to your computer and use it in GitHub Desktop.
Date AngularJS Filter Using Momentjs
'use strict';
confLojaApp.filter('dt', function() {
return function(str, format) {
return moment(str).format(format);
// return accounting.formatMoney(input, symbol || "", 2, ".",",");
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment