Hash : 9dd403dc Author : Thomas de Grivel Date : 2024-08-14T22:28:58
Download
1 2 3 4 5 6 7 8 9 10 11 12
JSON.from_str("{}") %{} JSON.from_str("{\"a\": \"b\"}") %{"a" => "b"} JSON.from_str("{\"a\": 1}") %{"a" => 1} JSON.from_str("{\"a\": true}") %{"a" => true} JSON.from_str("{\"a\": false}") %{"a" => false} JSON.from_str("{\"a\": null}") %{"a" => void}