cloudfour / core-hbs-helpers

Handlebars helpers that we usually need
MIT License
11 stars 2 forks source link

Feature: defaultTo helper #18

Closed erikjung closed 8 years ago

erikjung commented 8 years ago

This adds a new helper to handle the common case of doing something like:

{{if value}}{{value}}{{else}}default{{/if}}

Using the helper:

{{defaultTo value "default"}}

CC @lyzadanger

tylersticka commented 8 years ago

Neat! :+1: