bs-pixl-xml

Bucklescript bindings to pixl-xml

Usage no npm install needed!

<script type="module">
  import bsPixlXml from 'https://cdn.skypack.dev/bs-pixl-xml';
</script>

README

Bucklescript bindings to pixl-xml

Bindings for pixl-xml XML parser.

Getting started

npm install bs-pixl-xml --save

or

yarn add bs-pixl-xml

Add "bs-pixl-xml" to bs-dependencies in your project's bsconfig.json

Example

let result = PixlXml.parse("<test><A>a</A></test>", ~forceArrays=true );
Js.log(result);