Module:JsonUtils
From Against the Storm Official Wiki
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