Module:User/JsonProbe: Difference between revisions

From Foxopedia
Jump to navigation Jump to search
(Created page with "local p = {} function p.run() if type(mw.ext) == 'table' and type(mw.ext.data) == 'table' and type(mw.ext.data.get) == 'function' then return 'JsonConfig Lua: OK' else return 'JsonConfig Lua: MISSING' end end return p")
(No difference)

Revision as of 03:16, 12 August 2025

Documentation for this module may be created at Module:User/JsonProbe/doc

local p = {}
function p.run()
  if type(mw.ext) == 'table' and type(mw.ext.data) == 'table' and type(mw.ext.data.get) == 'function' then
    return 'JsonConfig Lua: OK'
  else
    return 'JsonConfig Lua: MISSING'
  end
end
return p