Skip to content

Instantly share code, notes, and snippets.

@dburles
Created February 26, 2015 00:26
Show Gist options
  • Save dburles/ef5a1672b9aecd872209 to your computer and use it in GitHub Desktop.
Save dburles/ef5a1672b9aecd872209 to your computer and use it in GitHub Desktop.
Template.foo.helpers({
stepsWithIndex: function() {
return _.map(this.steps, function(value, index) {
return {
index: index,
value: value
};
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment