13 lines
204 B
Lua
13 lines
204 B
Lua
local Utils = {}
|
|
|
|
function Utils:IsIn(table, element)
|
|
for key, value in pairs(table) do
|
|
if element == value then
|
|
return true
|
|
end
|
|
end
|
|
return false
|
|
end
|
|
|
|
return Utils
|