mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 12:37:20 +00:00
7 lines
155 B
TypeScript
7 lines
155 B
TypeScript
import { XMLParser } from "fast-xml-parser";
|
|
|
|
export function xmlToObject(xml: string) {
|
|
const parser = new XMLParser();
|
|
return parser.parse(xml);
|
|
}
|