startsWith

API -

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

Last updated