danharper / Handlebars-Helpers

A small collection of useful helpers for Handlebars.js
Do What The F*ck You Want To Public License
273 stars 55 forks source link

Now we can compare more than two variables #19

Open lludol opened 9 years ago

lludol commented 9 years ago

I added the helper 'are' to compare more than two variables. I also updated the README and the test file.

It works like that:

{{#are x ">" y "and" x "not" z}} ... {{else}} ... {{/are}}
{{#are x "===" y "or" x ">=" z}} ... {{else}} ... {{/are}}