Skip to content

Instantly share code, notes, and snippets.

@TastyToast
Created March 7, 2013 01:34
Show Gist options
  • Save TastyToast/5104850 to your computer and use it in GitHub Desktop.
Save TastyToast/5104850 to your computer and use it in GitHub Desktop.
Handlebars Debug helper
Handlebars.registerHelper("debug", function(optionalValue) {
console.log("Current Context");
console.log("====================");
console.log(this);
if (optionalValue) {
console.log("Value");
console.log("====================");
console.log(optionalValue);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment