Skip to content

Ember HTMLBars Helpers for {{if}} & {{unless}}: not, and, or, eq & is-array

License

Notifications You must be signed in to change notification settings

danDanV1/ember-truth-helpers

 
 

Repository files navigation

Ember Truth Helpers Build Status

HTMLBars template helpers for additional truth logic in if and unless statements.

Usage

Helper JavaScript HTMLBars
eq if (a === b) {{if (eq a b)}}
not-eq if (a !== b) {{if (not-eq a b)}}
not if (!a) {{if (not a)}}
and if (a && b) {{if (and a b)}}
or if (a || b) {{if (or a b)}}
xor `if (a && !b
gt if (a > b) {{if (gt a b)}}
gte if (a >= b) {{if (gte a b)}}
lt if (a < b) {{if (lt a b)}}
lte if (a <= b) {{if (lte a b)}}
is-array if (Ember.isArray(a)) {{if (is-array a)}}

Install

  • ember install ember-truth-helpers

Other Helpers

Development

  • git clone https://github.com/jmurphyau/ember-truth-helpers.git
  • npm install
  • bower install
  • ember server
  • Visit your app at http://localhost:4200.

Running Tests

  • npm test (Runs ember try:testall to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit http://www.ember-cli.com/.

About

Ember HTMLBars Helpers for {{if}} & {{unless}}: not, and, or, eq & is-array

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 95.8%
  • HTML 4.2%