Documentation for this module may be created at Module:Data/sandbox/doc
You can edit almost every page by Creating an account and confirming your email.
Documentation for this module may be created at Module:Data/sandbox/doc
local mt = {}
function mt.__index(t, k)
if string.sub(k, 1, 7) ~= "Module:" then
k = "Module:" .. k
end
return function(frame)
local data = mw.loadData(k)
for _,v in ipairs(frame.args) do
data = data[v]
end
return data
end
end
return setmetatable({}, mt)
This module "Data/sandbox" is from Wikipedia if otherwise notified