metastruct-experiments/prejoin_hooks/util/tbl_utils.lua
2024-08-19 12:39:35 +08:00

11 lines
No EOL
207 B
Lua

tbl_utils = {}
tbl_utils.contains = function (table, element)
for _, value in pairs(table) do
if value == element then
return true
end
end
return false
end