Jump to content

Module:If empty

Di Wikipedia, e ensiklopedia liber
Revishon 14:53, 27 yanüari 2021 hasí pa Frank Geerlings (papia | kontrib'nan) (inspirá pa e Wikipedia hulandes)
(dif) ← Edicion ariba | wak revishon aktual (dif) | Revishon mas resien (dif)

Documentation for this module may be created at Module:If empty/doc

local p = {}

function p.main(frame)
	local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:First non empty', removeBlanks = false})

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

return p