mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-24 22:56:02 +00:00
Fix log special case for empty tables
This commit is contained in:
@@ -42,7 +42,7 @@ end
|
|||||||
]]
|
]]
|
||||||
local function defaultTableDebugExtended(buffer, input)
|
local function defaultTableDebugExtended(buffer, input)
|
||||||
-- Special case for empty tables.
|
-- Special case for empty tables.
|
||||||
if next(buffer) == nil then
|
if next(input) == nil then
|
||||||
buffer:writeRaw("{}")
|
buffer:writeRaw("{}")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user