Initial commit

This commit is contained in:
2025-01-04 13:47:04 +01:00
commit 19a7052f75
8 changed files with 471 additions and 0 deletions

9
StringHelpers.lua Normal file
View File

@@ -0,0 +1,9 @@
Str = {}
function Str.toLower(s) return string.lower(s or "") end
function Str.nullOrEmpty(s) return not s or s == "" end
function Str.split(s, delimiter, max)
---@diagnostic disable-next-line: undefined-field
return string.split(delimiter, s, max)
end