Modul:If empty

Vikiiqtibosdan olingan

Bu modul uchun Modul:If empty/doc nomli hujjat sahifasini yaratishingiz mumkin

local p = {}

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

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

end

return p