Jump to content

Module:If empty

Permanently protected module
From Wikipedia, the free encyclopedia

This is the current revision of this page, as edited by MSGJ (talk | contribs) at 18:33, 26 January 2023 (lastk is not needed). The present address (URL) is a permanent link to this version.

(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

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