fix table.empty, from auios

This commit is contained in:
Redo
2025-12-08 11:49:23 -05:00
parent 2191e004ad
commit 8399b11322
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -5,7 +5,7 @@
-- Table / List
-- Whether a table contains no keys
function table.empty(t)
return next(t)~=nil
return next(t)==nil
end
-- Apply a function to each key in a table
function table.map(f, ...)