Skip to content

Instantly share code, notes, and snippets.

@Willmo36
Created February 13, 2020 15:23
Show Gist options
  • Save Willmo36/d1834ee028073dabadb7f419d1ee7fba to your computer and use it in GitHub Desktop.
Save Willmo36/d1834ee028073dabadb7f419d1ee7fba to your computer and use it in GitHub Desktop.
fp-ts assert Option.Some
const assertOption = <A>(op: Option.Option<A>): A => {
if(Option.isNone(op)) {
throw new Error("assertSome failed.")
}
return op.value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment