https://github.com/1000ch/xml-stringify
Stringify AST built with segmentio/xml-parser.
https://github.com/1000ch/xml-stringify
xml
Last synced: 10 months ago
JSON representation
Stringify AST built with segmentio/xml-parser.
- Host: GitHub
- URL: https://github.com/1000ch/xml-stringify
- Owner: 1000ch
- Created: 2015-05-29T09:06:56.000Z (about 11 years ago)
- Default Branch: main
- Last Pushed: 2023-03-14T19:58:01.000Z (over 3 years ago)
- Last Synced: 2025-07-17T11:19:44.462Z (12 months ago)
- Topics: xml
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/xml-stringify
- Size: 1.34 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# xml-stringify 
Stringify AST built with [segmentio/xml-parser](https://github.com/segmentio/xml-parser).
## Usage
```javascript
import parse from 'xml-parser';
import stringify from 'xml-stringify';
const ast = parse('Foo!');
const xml = stringify(ast);
console.log(xml);
```
## License
[MIT](https://1000ch.mit-license.org) © [Shogo Sensui](https://github.com/1000ch)