Skip to content

Instantly share code, notes, and snippets.

@Chadtech
Created March 15, 2018 13:07
Show Gist options
  • Save Chadtech/bc15cbfcaf0aa537a0cd9b20ee523b8b to your computer and use it in GitHub Desktop.
Save Chadtech/bc15cbfcaf0aa537a0cd9b20ee523b8b to your computer and use it in GitHub Desktop.
logDecode : String -> Decoder a -> Decoder a
logDecode tag decoder =
Decode.value
|> Decode.andThen (logDecodeHelper tag decoder)
logDecodeHelper : String -> Decoder -> Decode.Value -> Decoder a
logDecodeHelper tag decoder json =
let
_ =
Debug.log tag json
in
decoder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment