Module:If empty

From Seeds of the Word, the encyclopedia of the influence of the Gospel on culture
Revision as of 15:02, October 24, 2022 by Johnrdorazio (talk | contribs) (1 revision imported)

Documentation for this module may be created at Module:If empty/doc

local p = {}

function p.main(frame)
	local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:If empty', removeBlanks = false})

	local lastk = 0
	for k,v in ipairs(args) do
		if v ~= '' then
			return v
		end
		lastk = k
	end

end

return p