Skip to content

Instantly share code, notes, and snippets.

@adrianpike
Created January 26, 2012 21:42
Show Gist options
  • Save adrianpike/1685284 to your computer and use it in GitHub Desktop.
Save adrianpike/1685284 to your computer and use it in GitHub Desktop.
Handlebars.registerHelper('each_property', function(object, options) {
var out = '';
for(key in object) {
out += options.fn({
key: key,
value: object[key]
});
}
return out;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment