Module:IfEmpty: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(7 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
function p.main(frame) | function p.main(frame) | ||
local args = getArgs(frame, { | -- Important to use removeBlanks = false here, because otherwise a blank | ||
wrappers = 'Template:IfEmpty' | -- positional arg will be turned into nil, and Lua's ipairs() stops when a | ||
-- value is nil, so you won't be able to iterate over the rest of the | |||
-- positional args. | |||
local args = getArgs(frame, { | |||
wrappers = 'Template:IfEmpty', | |||
removeBlanks = false, | |||
}) | }) | ||
for i, v in ipairs(args) do | |||
for | |||
if v ~= '' then | if v ~= '' then | ||
return v | return v |
Latest revision as of 00:12, 29 November 2023
This module implements the functionality of Template:IfEmpty. It returns the first template argument that's not empty or whitespace-only.
local getArgs = require('Module:Arguments').getArgs
local p = {}
function p.main(frame)
-- Important to use removeBlanks = false here, because otherwise a blank
-- positional arg will be turned into nil, and Lua's ipairs() stops when a
-- value is nil, so you won't be able to iterate over the rest of the
-- positional args.
local args = getArgs(frame, {
wrappers = 'Template:IfEmpty',
removeBlanks = false,
})
for i, v in ipairs(args) do
if v ~= '' then
return v
end
end
end
return p