Skip to content

Instantly share code, notes, and snippets.

@TastyToast
Created March 1, 2013 19:12
Show Gist options
  • Save TastyToast/5066989 to your computer and use it in GitHub Desktop.
Save TastyToast/5066989 to your computer and use it in GitHub Desktop.
Debugging helper for Handlebars
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