Module:If empty

From A2wiki
Revision as of 04:38, 6 May 2022 by wp>Dinoguy1000 (update from sandbox, per Template talk:If empty#Backcompat)
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})

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

end

return p