Documentation for this module may be created at Module:Sandbox/Esquivalience/Rfx/doc

local rfx = require( 'Module:Rfx' )
local t = {}

function t.supports(frame)
	return rfx.new(frame.args[1]).supports
end

function t.opposes(frame)
	return rfx.new(frame.args[1]).opposes
end


function t.neutrals(frame)
	return rfx.new(frame.args[1]).neutrals
end

function t.percent(frame)
	return rfx.new(frame.args[1]).percent
end

return t