Skip to main content
Module

x/rambda/index.d.ts>unless

Faster and smaller alternative to Ramda
Go to Latest
function unless
import { unless } from "https://deno.land/x/rambda@v7.0.1/index.d.ts";

The method returns function that will be called with argument input.

If predicate(input) returns false, then the end result will be the outcome of whenFalse(input).

In the other case, the final output will be the input itself.

Parameters

predicate: (x: T) => boolean
whenFalseFn: (x: T) => U
x: T

Parameters

predicate: (x: T) => boolean
whenFalseFn: (x: T) => U

Returns

(x: T) => T | U

Parameters

predicate: (x: T) => boolean
whenFalseFn: (x: T) => T
x: T

Parameters

predicate: (x: T) => boolean
whenFalseFn: (x: T) => T

Returns

(x: T) => T