模块:If empty:修订间差异

来自SCP秘密实验室wiki
(lastk is not needed)
 
(导入1个版本)
 
(没有差异)

2024年1月19日 (五) 14:34的最新版本

可在模块:If empty/doc创建此模块的帮助文档

脚本错误:Lua错误:无法创建进程:proc_open不可用。请检查PHP的指令配置“disable_functions”。

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