LambdaBase v0.1.0 Util.Json

Documentation for Json.

Link to this section Summary

Functions

Decode from JSON format.

Encode to JSON format.

Link to this section Functions

Decode from JSON format.

Examples

iex> Util.Json.decode("{"key":"b"}")
%{"key" => "value"}

Encode to JSON format.

Examples

iex> Util.Json.encode(%{"key" => "value"})
"{"key":"value"}"