From Afropedia.world
Jump to: navigation, search
wikipediatemplates>MSGJ
wikipediatemplates>MSGJ (lastk is not needed)
Djehuti
Djehuti (talk | contribs) (1 revision imported)
m
 
(3 intermediate revisions by 2 users not shown)
(No difference)

Latest revision as of 12:21, 17 June 2024

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