Module:If empty

From Zoophilia Wiki
Revision as of 20:58, 23 December 2014 by meta>Codehydro (simpliy; just noticed the "preview page with this module" box... will no longer be doing weird tests XD)
Jump to navigationJump to search

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

local p = {}

function p.main(frame)
	for _,v in ipairs(frame.args) do
		if v ~= '' then 
			return v
		end
	end
	for _,v in ipairs(require('Module:Arguments').getArgs(frame, {wrappers = 'Template:If empty', removeBlanks = false})) do
		if v ~= '' then
			return v
		end
	end
end

return p