7 lines
186 B
TypeScript
7 lines
186 B
TypeScript
![]() |
import { xml2js, Element } from "xml-js";
|
||
|
|
||
|
export const toJson = (xmlData: string): Element => {
|
||
|
const xmlObj = xml2js(xmlData, { compact: false }) as Element;
|
||
|
return xmlObj;
|
||
|
};
|