Skip to content

Instantly share code, notes, and snippets.

@dferber90
Last active August 29, 2015 14:22
Show Gist options
  • Save dferber90/6a46b5cf09a3c70f993e to your computer and use it in GitHub Desktop.
Save dferber90/6a46b5cf09a3c70f993e to your computer and use it in GitHub Desktop.
Enhanced Object Literals
// ES6
Template.lead.helpers({
twitterLink () {
return this.getTwitterLink();
},
weekday (timestamp) {
return moment(timestamp).format(‘dddd’);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment