2.0.0 • Published 4 years ago

elm-string-representation v2.0.0

Weekly downloads
12
License
BSD-3-Clause
Repository
github
Last release
4 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

4 years ago

1.2.1

5 years ago

1.2.0

6 years ago

1.1.10

6 years ago

1.1.9

6 years ago

1.1.8

6 years ago

1.1.7

6 years ago

1.1.6

6 years ago

1.1.5

7 years ago

1.1.4

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago