xp-forge / handlebars-templates

Handlebars templates for XP web frontends
1 stars 0 forks source link

Implement `coalesce` helper #18

Open thekid opened 11 months ago

thekid commented 11 months ago

This pull request adds a helper which returns the first non-null argument.

This syntax:
{{#title}}{{.}}{{^}}Default{{/title}}

Can now be shortened to:
{{coalesce title "Default"}}

This is similar to the any helper but it returns the first non-null value (or null if there is none) instead of true or false.