Skip to content

Instantly share code, notes, and snippets.

@there4
Created September 6, 2012 01:43
Show Gist options
  • Save there4/3649747 to your computer and use it in GitHub Desktop.
Save there4/3649747 to your computer and use it in GitHub Desktop.
Handlebars time format helper
// usage: {{fromNow date}}
Handlebars.registerHelper('fromNow', function(date) {
moment = new Moment(date);
return moment.fromNow();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment