This commit is contained in:
Jean-Patrick Guerrero
2020-04-16 03:57:29 +02:00
parent f39ca50f3b
commit 5e23600001
2 changed files with 5 additions and 3 deletions

View File

@ -234,6 +234,7 @@ local function table_eq(T1, T2)
local function recurse(t1, t2)
if type(t1) ~= type(t2) then return end
if not is_table(t1) then
return t1 == t2
end