elm-string-representation
v2.0.0
Published
Parses Elm string representation for data
Downloads
14
Readme
Elm String Representation
Parses Elm string representation for data. Part of litvis.
import { parse } from "elm-string-representation";
const data = parse('{ a = "test", b = 42 }');
console.log(JSON.stringify(data, null, 2));
{
"a": "test",
"b": 42
}
TODO: Add stringify
.