Module:If empty: Difference between revisions

From IxWiki
Jump to navigation Jump to search
(update from sandbox, per Template talk:If empty#Backcompat)
m (1 revision imported)
(No difference)

Revision as of 01:59, 5 January 2023

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