Ugrás a tartalomhoz

„Modul:If empty” változatai közötti eltérés

Innen: TrashWiki
lastk is not needed
 
a 1 változat importálva
 
(Nincs különbség)

A lap jelenlegi, 2025. január 21., 07:45-kori változata

This module supports Template:If empty. See here for test cases.



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