Module:If empty

From A2wiki
Jump to navigation Jump to search
TemplateStyles' src attribute must not be empty. TemplateStyles' src attribute must not be empty. TemplateStyles' src attribute must not be empty.

This module supports Template:If empty.

Tracking/maintenance category[edit source]


local p = {}

function p.main(frame)
	local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:If empty', removeBlanks = false})

	for k,v in ipairs(args) do
		if v ~= '' then
			return v
		end
	end

end

return p