mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-31 17:33:48 +00:00
9 lines
116 B
Lua
9 lines
116 B
Lua
|
|
--array count
|
|
function count(t)
|
|
local c = 0;
|
|
for k in pairs(t) do
|
|
c = c + 1;
|
|
end
|
|
return c;
|
|
end |