Jump to content

Module:If empty: Difference between revisions

From PricePedia, the cost of living encyclopedia
Wikipedia>MSGJ
Wikipedia>MSGJ (lastk is not needed)
 
Godman Andrew
Godman Andrew (talk | contribs) (1 revision imported)
m
 
(No difference)

Latest revision as of 04:13, 1 April 2025

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