Skip to main content
Module

x/fun/mod.ts>promise.reject

A collection of algebraic data types, lenses, and schemables based on a light weight higher kinded type implementation. Written for deno.
Go to Latest
function promise.reject
import { promise } from "https://deno.land/x/fun@v2.0.0-alpha.12/mod.ts";
const { reject } = promise;

An alias for Promise.reject.

Examples

Example 1

import { reject } from "./promise.ts";

const result = await reject(1).catch(x => x); // 1

Parameters

rejection: unknown

Returns

Promise<never>