polyfill str_starts: make less dense and mroe readable

This commit is contained in:
Starbeamrainbowlabs 2021-05-30 13:06:47 +01:00
parent 2f18e9d4ab
commit 8bc2e543da
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ end
-- @param str string The string to operate on
-- @param start number The start string to look for
-- @returns bool Whether start is present at the beginning of str
function worldeditadditions.str_starts(str,start)
return string.sub(str,1,string.len(start))==start
function worldeditadditions.str_starts(str, start)
return string.sub(str, 1, string.len(start)) == start
end
--- Trims whitespace from a string from the beginning and the end.