Module:If empty: Difference between revisions

From Frontierpedia, the Microsoft Agent encyclopedia
frontierpediav5>WikiSysop
m (1 revision imported: attempt #391243128432)
m (3 revisions imported)
 
(No difference)

Latest revision as of 17:26, 9 October 2022

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