Skip to content

Instantly share code, notes, and snippets.

@Sidheeqpallam
Created August 22, 2022 07:47
Show Gist options
  • Save Sidheeqpallam/26a900dd9b40f08197c2f4bd79d3d815 to your computer and use it in GitHub Desktop.
Save Sidheeqpallam/26a900dd9b40f08197c2f4bd79d3d815 to your computer and use it in GitHub Desktop.
Make a custom handlebars helper for check two values are same or not.
isEqual = (a, b, options)=>{
if(a == b){
return options.fn(this)
}
return options.inverse(this)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment