@@ -46,9 +46,13 @@ local isarray = function(x)
return (x and x[1]) and true or false
end
local iternil = function()
return noop
local getiter = function(x)
if x == nil then
return iternil
elseif isarray(x) then
return ipairs
else
The note is not visible to the blocked user.