Module:Is live show

From SPCodex, The Smashing Pumpkins wiki
Revision as of 20:18, 16 December 2020 by MusikAnimal (talk | contribs)

Documentation for this module may be created at Module:Is live show/doc

local p = {}

function p._isLiveShow(title)
	local fragment = string.sub(title, -10)
	return string.match(fragment, "%d%d%d%d%-%d%d%-%d%d")
end

function p.main(frame)
	if p._isLiveShow(frame.args[1]) then
		return '1'
	end

	return ''
end

return p