Jump to content

Module:If empty

Di Wikipedia, e ensiklopedia liber
Revishon 10:10, 22 yüni 2024 hasí pa Kallmemel (papia | kontrib'nan)
(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:If empty', removeBlanks = false})

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

return p