# startsWith

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