Module:ItemSources: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 19: | Line 19: | ||
local data = pcall(storeLocationsList.main(frame)) | local data = pcall(storeLocationsList.main(frame)) | ||
if data | if data then | ||
mw.log("no data | mw.log("no error") | ||
else | |||
mw.log("error") | |||
mw.log("data", inspect(data)) | |||
end | end | ||
end | end | ||
Revision as of 12:14, 4 April 2022
Documentation for this module may be created at Module:ItemSources/doc
-------------------------- -- Module for [[Template:ItemSources]] -- -- ------------------------ local p = {} local storeLocationsList = require('Module:Store locations list') local onmain = require('Module:Mainonly').on_main local commas = require('Module:Addcommas')._add local inspect = require('Module:Inspect') VariablesLua = mw.ext.VariablesLua function p.main(frame) local args = frame:getParent().args mw.log("args", inspect(data)) local data = pcall(storeLocationsList.main(frame)) if data then mw.log("no error") else mw.log("error") mw.log("data", inspect(data)) end end return p