EigeenLoader/utils/Utils.lua

13 lines
204 B
Lua
Raw Normal View History

2023-12-28 22:42:34 +08:00
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