For the complete documentation index, see llms.txt. This page is also available as Markdown.

startsWith

API -

return function
    local val = 'hello';
    val = helper.startsWith(val, 'he');
    log(val); --logs true
end

Last updated