Module:JsonUtils

From Against the Storm Official Wiki
Revision as of 23:55, 27 April 2024 by Aeredor (talk | contribs) (Created to handle json data files)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

---
--- asdf
---
---@module JsonUtils
local JsonUtils = {}



--region Private constants
--endregion



--region Private methods
--endregion



--region Public methods

function JsonUtils.convertJsonToLuaTable(wikiPageName)

    local jsonContent = mw.loadJsonData(wikiPageName)

    return jsonContent
end

--endregion



return JsonUtils