Jump to content

Module:Road data/size

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Fredddie (talk | contribs) at 07:07, 14 February 2021 (starting over). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Lua error: not enough memory.

local getArgs = require('Module:Arguments').getArgs
local p = {}

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

function p._size(args)
	local style = args["style"] or ''
	return style
end

return p