Skip to content

Instantly share code, notes, and snippets.

@joakin
Created December 20, 2021 07:39
Un safely unwrap a Maybe in production
unwrap : Maybe a -> a
unwrap maybeA =
case maybeA of
Just a ->
a
Nothing ->
unwrap maybeA
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment