Created
February 9, 2023 12:49
-
-
Save gambitier/2c8dcc663e093a3a5e3aaac3223ccca6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as convert from 'xml-js'; | |
| const xml = readFileSync(filePath, { | |
| encoding: 'utf8' | |
| }); | |
| const result1 = convert.xml2json(xml, { compact: true, spaces: 4 }); | |
| const data = JSON.parse(result1) as DataType; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment