Merge pull request #420 from Onran0/main

is_array fix
This commit is contained in:
MihailRis
2024-12-22 01:05:43 +03:00
committed by GitHub
+1 -1
View File
@@ -1,6 +1,6 @@
-- Check if given table is an array
function is_array(x)
if #t > 0 then
if #x > 0 then
return true
end
for k, v in pairs(x) do