বিষয়বস্তুতে চলুন

মডিউল:If empty

From ওয়ার্ল্ডপিডিয়া, the free encyclopedia
enwiki>Jackmcbarn কর্তৃক ০৩:২৩, ২৪ ডিসেম্বর ২০১৪ তারিখে সংশোধিত সংস্করণ (properly handle blanks acting like empties (I'm not sure it's a good idea to do this at all, but if it is, this is how you should do it))

এই মডিউলের জন্য মডিউল:If empty/নথি-এ নথিপত্র তৈরি করা হয়ে থাকতে পারে

local p = {}

function p.main(frame)
	local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:If empty', removeBlanks = false})
	for i = 1,9 do
		if args[i] == nil then
			args[i] = ''
		end
	end
	for _,v in ipairs(args) do
		if v ~= '' then
			return v
		end
	end
end

return p