Module:If empty

From the Croc Wiki, the Croc encyclopedia
Revision as of 18:42, December 23, 2014 by wikipedia>Codehydro (oh, misread doc; thought opposite purpose for template)
Jump to navigationJump to search

This module supports Template:If empty.

Tracking/maintenance category


-- 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 not string.len(args[i]) do
		i = i + 1
	end
	return args[i]
end
return p