plugins/gitadora@asphyxia/data/helper.ts
DitFranXX 43e0716b85 Initial Release for Gitadora Extension
* Converted from Asphyxia-Public-Route
* Enable `resolveJsonModule` in `tsconfig.json`
* WebUI for change name and title.
2020-12-11 16:48:02 +09:00

5 lines
153 B
TypeScript

export async function readXML(path: string) {
const xml = await IO.ReadFile(path, 'utf-8');
const json = U.parseXML(xml, false)
return json
}