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
.
Author: Jonas Oberschweiber
Version: October 2024
parseJSON
:: String -> Maybe JValue
Parses a JSON string into a JValue. |