GMOD_disease/lua/autorun/server/sv_utils.lua

11 lines
208 B
Lua
Raw Normal View History

2023-09-03 14:04:49 -04:00
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