Files
wow-ActionBarSaverDaved/StringHelpers.lua
2025-01-04 13:47:04 +01:00

9 lines
258 B
Lua

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