Module:If empty

From TEPwiki, Urth's Encyclopedia
Revision as of 13:45, 23 December 2014 by w>Codehydro
Jump to navigation Jump to search

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

-- this is intended to replace {{If empty}}
local p = {};
function p.run(frame)
	local args = require('Module:Arguments').getArgs(frame)
	local i = 0
	args[table.getn(args)] = ''
	while 0 == string.len(args[i]) do
		i = i + 1
	end
	return args[i]
end
return p