This library contains the implementation of a parser for JSON values,
i.e., an operation parseJSON
which reads a textual JSON representation
and returns a Maybe
value of type JValue
.
parseJSON
:: String -> Maybe JValue
Parses a JSON string into a JValue.
Returns Nothing
if the string could not be parsed.