handlebars-helper-ternary
A Handlebars ternary helper.
Installation
Install using npm:
$ npm install handlebars-helper-ternary
Usage
helpers.js
Example helpers file that requires in Handlebars and registers the ternary helper under the name "ternary".
var Handlebars = ; Handlebars;
templates/example.handlebars
Example template file that makes use of the ternary helper. This helper
accepts three arguments: a test
argument to evaluate for truthiness, a yes
argument to return in the case that test
is truthy, and a no
argument to
return in the case that test
is falsy.
<button type="button">{{ternary isNew "Add" "Save"}}</button>
Changelog
1.0.0 - 2015-07-17
- Initial release
License
MIT