Difference between revisions of "Module:Data"
en>MusikAnimal m (Protected Module:Data: Highly visible template ([Edit=Allow only template editors and admins] (indefinite) [Move=Allow only template editors and admins] (indefinite))) |
m (1 revision imported) |
(No difference)
|
Latest revision as of 10:01, 21 October 2018
Documentation for this module may be created at Module:Data/doc
Script error: Lua error: Internal error: The interpreter exited with status 127.
local mt = {}
function mt.__index(t, k)
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)