2.0.0 • Published 3 years ago

elm-string-representation v2.0.0

Weekly downloads
12
License
BSD-3-Clause
Repository
github
Last release
3 years ago

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.

2.0.0

3 years ago

1.2.1

4 years ago

1.2.0

5 years ago

1.1.10

5 years ago

1.1.9

5 years ago

1.1.8

5 years ago

1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago