import { type IsNullable } from "https://deno.land/std@0.204.0/testing/types.ts";
Checks if type T
is possibly null or undefined.
definition: Extract<T, null | undefined> extends never ? false : true
import { type IsNullable } from "https://deno.land/std@0.204.0/testing/types.ts";
Checks if type T
is possibly null or undefined.