Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

toNull

import { toNull } from "https://raw.githubusercontent.com/baetheus/fun/main/option.ts";

toNullable returns either null or the inner value of an Option. This is useful for interacting with code that handles null but has no concept of the Option type.

@example
import * as O from "./option.ts";

const result1 = O.toNull(O.none); // null
const result2 = O.toNull(O.some(1)); // 1
function toNull<A>(ma: Option<A>): A | null;
§
toNull<A>(ma: Option<A>): A | null
[src]

§Type Parameters

§Parameters

§Return Type

§
A | null
[src]