Module:Sandbox/BrandonXLF/1

This is an old revision of this page, as edited by BrandonXLF (talk | contribs) at 01:56, 14 September 2018. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

-- Keep Here

function main(frame)
	if frame.args[1] == nil or frame.args[1] == "null" or frame.args[1] == "0" or frame.args[1] == "" or frame.args[1] == mw.ustring.match(frame.args[1],"%s") then
		return "false"
	else
		return "true"
	end
end 

return {main = main}