Last updated 5 years ago
A native helper is a helper that is turned into JavaScript code at compilation time, rather than being called at runtime. For example,
{{log("hi")/}}
is turned into console.log("hi") .
console.log("hi")
Learn how to create your own native helpers