Built-in Helpers
A list of all Squirrelly's built-in native helpers..
if/else
{{if(options.somevalue === 1)}}
Display this
{{#else}}
Display this
{{/if}}each
{{each(options.somearray)}}
Display this
The current array element is {{@this}}
The current index is {{@index}}
{{/each}}Helper References:
this: the current array elementindex: the index of the array element
foreach
Helper References:
this: the value of the current object childkey: the key of the current child
log
tags
js
Last updated