Skip to content

Instantly share code, notes, and snippets.

@srounce
Last active December 27, 2015 02:59
Show Gist options
  • Select an option

  • Save srounce/7256496 to your computer and use it in GitHub Desktop.

Select an option

Save srounce/7256496 to your computer and use it in GitHub Desktop.
Handlebars.registerHelper("debug", function(optionalValue) {
if (optionalValue) {
return console.log("Value:", optionalValue);
} else {
return console.log("Current Context:", this);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment