Skip to content

Instantly share code, notes, and snippets.

@Danetag
Last active December 30, 2015 23:59
Show Gist options
  • Save Danetag/7904582 to your computer and use it in GitHub Desktop.
Save Danetag/7904582 to your computer and use it in GitHub Desktop.
Handlebars helper : get the value of an object with a given key.
/*
USAGE : {{#value_of obj "key" }} {{this}} {{/value_of}}
/*
Handlebars.registerHelper('value_of', function(context, key, options) {
return options.fn(context[key]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment