mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-09-25 07:38:16 +03:00
* Converted from Asphyxia-Public-Route * Enable `resolveJsonModule` in `tsconfig.json` * WebUI for change name and title.
5 lines
153 B
TypeScript
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
|
|
} |