18%
MIT
Bucklescript bindings to pixl-xml

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);