Мазмунга өтүү

Модуль:if empty

Wiktionary долбоорунан

Documentation for this module may be created at Модуль:if empty/doc

local export = {}

function export.main(frame)
	local args = require("Module:parameters").process(frame:getParent().args, {
		[1] = {list = true}
	})[1]
	
	for i = 1, #args do
		local v = args[i]
		if v then
			return v
		end
	end
	
	return ""
end

return export