Skip to main content
Module

x/fae/mod.ts>reject

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

works as the complement of filter

 const isOdd = n => (n & 1) === 1;
 const f = Fae.reject(isOdd, [1, 2, 3, 4])
 f() // [2, 4]

type

Reject