Skip to main content
Module

x/fae/or.ts>or

A functional module for Deno inspired from Ramda.
Latest
variable or
import { or } from "https://deno.land/x/fae@v1.1.1/or.ts";

Returns true if one or both of its arguments are true. Returns false if both arguments are false.

 Fae.or(true, true)    //=> true
 Fae.or(true, false)   //=> true
 Fae.or(false, true)   //=> true
 Fae.or(false, false)  //=> false