Skip to main content
Module

x/fae/both.ts

A functional module for Deno inspired from Ramda.
Latest
import * as fae from "https://deno.land/x/fae@v1.1.1/both.ts";

Variables

A function which calls the two provided functions and returns the && of the results. It returns the result of the first function if it is false and the result of the second function otherwise. Second function will not be invoked if the first returns a false value.