local p = {}
-- Returns whether a variable is nil or an empty string.
function p.IsEmpty(variable)
return ((variable == nil) or (variable == ""))
end
return p
Advertisement
Want to contribute to this wiki?
Sign up for an account, and get started!
Come join the Zelda Wiki community Discord server!
READ MORE
local p = {}
-- Returns whether a variable is nil or an empty string.
function p.IsEmpty(variable)
return ((variable == nil) or (variable == ""))
end
return p