Created
May 6, 2014 18:28
-
-
Save sylvaindethier/47fa9d008273a0954052 to your computer and use it in GitHub Desktop.
Handlebars helper that handle MomentJS `fromNow` method
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
/** | |
* Moment - fromNow | |
*/ | |
Handlebars.registerHelper('moment_unix_fromNow', function (timestamp) { | |
return moment.unix(timestamp).fromNow(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment