Skip to main content
Module

x/fun/promise.ts>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 reject
import { reject } from "https://deno.land/x/fun@v2.0.0-alpha.10/promise.ts";

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>