edn-to-js
v0.1.2
Published
EDN to JS
Downloads
51
Readme
edn-to-js
A simple ClojureScript
edn->js
implementation, exported as a commonjs module.
After finding an appalling lack of anything sensible for converting EDN to JavaScript data on NPM I took literally 5 minutes and wrote, built and published this.
Usage
const edn = require('edn-to-js');
edn('{:foo "bar"}'); // => { foo: 'bar' }
License
MIT