Created
March 7, 2013 01:39
-
-
Save rsvalerio/5104870 to your computer and use it in GitHub Desktop.
Date AngularJS Filter Using Momentjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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