Skip to content

Instantly share code, notes, and snippets.

@yoko
Created July 9, 2012 15:03
Show Gist options
  • Save yoko/3077044 to your computer and use it in GitHub Desktop.
Save yoko/3077044 to your computer and use it in GitHub Desktop.
Handlebars.registerHelper('equal', function(a, b, options) {
return a == b ?
options.fn(this) :
options.inverse(this);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment