跳至內容

模組:If empty

Wikipedia (chū-iû ê pek-kho-choân-su) beh kā lí kóng...
Great Brightstarthó-lūn | kòng-hiàn tī 2023 nî 4 goe̍h 30 ji̍t (lé-pài) 03:25 siu-tēng
(diff) ←Khah-kū ê siu-tēng-pún | khoàⁿ siōng sin ê siu-tēng-pún (diff) | Khah-sin ê siu-tēng-pún→ (diff)

可在模組:If empty/doc建立此模組的說明文件

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