Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/ahh/src/option/mod.ts>O.unwrap

Idiomatic type-safety functions.
Go to Latest
method O.unwrap
import { O } from "https://deno.land/x/ahh@v0.10.1/src/option/mod.ts";

Returns opt if it is a Some, or throws.

Examples

import { O, None } from "./mod.ts";

console.log(O.unwrap(1)); // 1
O.unwrap(None); // throws

Returns

opt extends Some<T> ? T : never