Skip to main content
Module

x/rambda/index.d.ts>without

Faster and smaller alternative to Ramda
Latest
function without
import { without } from "https://deno.land/x/rambda@v9.2.0/index.d.ts";

It will return a new array, based on all members of source list that are not part of matchAgainst list.

R.equals is used to determine equality.

Parameters

matchAgainst: T[]
source: T[]

Parameters

matchAgainst: T[]

Returns

(source: T[]) => T[]