Files
docx-js/src/templater/util.ts

7 lines
186 B
TypeScript
Raw Normal View History

2023-02-18 20:36:24 +00:00
import { xml2js, Element } from "xml-js";
export const toJson = (xmlData: string): Element => {
const xmlObj = xml2js(xmlData, { compact: false }) as Element;
return xmlObj;
};