If empty

From Eating Asturias, the Encyclopedia of Asturian Gastronomy
Revision as of 14:11, 29 September 2022 by JonTillman (talk | contribs) (1 revision imported: https://en.wikipedia.org/wiki/Template:Infobox_settlement)

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