Module:If empty

From A2wiki
Revision as of 18:33, 26 January 2023 by wp>MSGJ (lastk is not needed)
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


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