Skip to content

Instantly share code, notes, and snippets.

@kingluddite
Created May 11, 2014 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kingluddite/51d1c5b7cef52dd28d7a to your computer and use it in GitHub Desktop.
Save kingluddite/51d1c5b7cef52dd28d7a to your computer and use it in GitHub Desktop.
Handlebars.registerHelper("formatDate", function(datetime) {
if (moment) {
return moment(datetime).format("MM/DD/YYYY");
}
else {
return datetime;
}
});
@kingluddite
Copy link
Author

use this after you add the 'moment' package to meteor to format dates

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment