Files
EigeenLoader/utils/Utils.lua
2023-12-28 22:42:34 +08:00

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