Files
bknd/app/src/core/utils/xml.ts
2024-11-16 12:01:47 +01:00

7 lines
155 B
TypeScript

import { XMLParser } from "fast-xml-parser";
export function xmlToObject(xml: string) {
const parser = new XMLParser();
return parser.parse(xml);
}