LambdaBase v0.1.0 Util.Json
Documentation for Json.
Link to this section Summary
Link to this section Functions
Link to this function
decode(value)
Decode from JSON format.
Examples
iex> Util.Json.decode("{"key":"b"}")
%{"key" => "value"}
Link to this function
encode(value)
Encode to JSON format.
Examples
iex> Util.Json.encode(%{"key" => "value"})
"{"key":"value"}"