Module:If empty

From Seeds of the Word, the encyclopedia of the influence of the Gospel on culture
Revision as of 04:38, May 6, 2022 by en>Dinoguy1000 (update from sandbox, per Template talk:If empty#Backcompat)

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