mirror of
https://github.com/veden/Rampant.git
synced 2024-12-30 21:19:46 +02:00
14 lines
245 B
Lua
Executable File
14 lines
245 B
Lua
Executable File
if stringUtilsG then
|
|
return stringUtilsG
|
|
end
|
|
local stringUtils = {}
|
|
|
|
local sSub = string.sub
|
|
|
|
function stringUtils.isRampantSetting(str)
|
|
return sSub(str, 1, #"rampant--") == "rampant--"
|
|
end
|
|
|
|
stringUtilsG = stringUtils
|
|
return stringUtils
|