The == operator does not act as I expect with JSON values.
Is this documented anywhere? I didn’t find it here, anyway.
import Json.Encode as Json
json1 = Json.object [ ("oh", Json.string "no")]
json2 = Json.object [ ("oh", Json.string "no"), ("wow", Json.string "cool")]
--returns True
json1 == json2