Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function filterInPlace
import { filterInPlace } from "https://deno.land/std@0.156.0/collections/_utils.ts";

Filters the given array, removing all elements that do not match the given predicate in place. This means array will be modified!.

Parameters

array: Array<T>
predicate: (el: T) => boolean

Returns

Array<T>