An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# xml-stringify ![test](https://github.com/1000ch/xml-stringify/actions/workflows/test.yml/badge.svg?branch=main)

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)