Jump to content

Module:Jctint/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Happy5214 (talk | contribs) at 10:57, 24 December 2013 (Adding destinations and notes). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

local mainModule = require "Module:Jctint/core"
local getArgs = require('Module:Arguments').getArgs

function p.locations(frame)
	local args = getArgs(frame)
	return mainModule.locations(args)
end

function p.units(frame)
	local args = getArgs(frame)
	return mainModule.units(args)
end

function p.destinations(frame)
	local args = getArgs(frame)
	return mainModule.destinations(args)
end

return p