Scripts/resources/[custom_script]/aty_crew/client/utils.lua

14 lines
173 B
Lua
Raw Permalink Normal View History

2024-12-29 19:48:41 +00:00
function table_size(tbl)
local size = 0
for k, v in pairs(tbl) do
size = size + 1
end
return size
end
function table_is_empty(tbl)
return table_size(tbl) == 0
end