Skip to main content
Module

std/collections/mod.ts>takeWhile

Deno standard library
Go to Latest
function takeWhile
import { takeWhile } from "https://deno.land/std@0.166.0/collections/mod.ts";

Returns all elements in the given collection until the first element that does not match the given predicate.

Example:

import { takeWhile } from "https://deno.land/std@0.166.0/collections/take_while.ts";
import { assertEquals } from "https://deno.land/std@0.166.0/testing/asserts.ts";

const arr = [1, 2, 3, 4, 5, 6];

assertEquals(
  takeWhile(arr, (i) => i !== 4),
  [1, 2, 3],
);

Parameters

array: readonly T[]
predicate: (el: T) => boolean