Jump to content

Module:If empty/sandbox

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Hike395 (talk | contribs) at 10:43, 11 January 2023 (rm unused variable). 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