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 element

  • index: the index of the array element

foreach

Helper References:

  • this: the value of the current object child

  • key: the key of the current child

log

The log helper is a self-closing, native helper. It's turned into this code:

console.log("The value of options.arr is: " + options.arr);

The log helper can be extremely helpful for debugging.

tags

Setting custom tags can be really helpful when writing in a language such as LaTek.

js

Last updated