Open bartavelle opened 2 years ago
It would be great if:
Posix
Our current workaround is:
"import Time exposing (Posix)",
"import Iso8601",
"jsonDecPosix : Json.Decode.Decoder Posix",
"jsonDecPosix = Iso8601.decoder",
"",
"jsonEncPosix : Posix -> Value",
"jsonEncPosix = Iso8601.encode",
It requires the
elm-community/json-extra
package for now.