GMOD_disease/lua/autorun/server/sv_utils.lua
2023-09-03 20:04:49 +02:00

11 lines
208 B
Lua

utils = {}
function utils.split (str, sep)
local new_table = {}
for v in string.gmatch(str, "([^"..sep.."]+)") do
table.insert(new_table, v)
end
return new_table
end
return utils