Module:IfEmpty: Difference between revisions

From Baldur's Gate 3 Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:
function p.main(frame)
function p.main(frame)
local args = getArgs(frame, { wrappers = 'Template:IfEmpty' })
local args = getArgs(frame, { wrappers = 'Template:IfEmpty' })
p._main(args)
end
function p._main(args)
for i, v in ipairs(args) do
for i, v in ipairs(args) do
if v ~= '' then
if v ~= '' then

Revision as of 00:41, 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)
	local args = getArgs(frame, { wrappers = 'Template:IfEmpty' })
	for i, v in ipairs(args) do
		if v ~= '' then
			return v
		end
	end
end

return p