Json.Parse

A simple JSON parser.

run : String -> Maybe Json

Parse a JSON value.

json : String -> Maybe (Result Json)

Parse a JSON value into an intermediate results.

This allows you to examine how far the parser gets for a specific input and what exactly it collects. I mainly expose this for my test code.