Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fathym_common/src/src.deps.ts>takeWhile

The Fathym Reference Architecture provides the common foundation for applications built in Typescript.
Go to Latest
function takeWhile
import { takeWhile } from "https://deno.land/x/fathym_common@v0.0.183/src/src.deps.ts";

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

Examples

Example 1

import { takeWhile } from "https://deno.land/std@0.224.0/collections/take_while.ts";
import { assertEquals } from "https://deno.land/std@0.224.0/assert/assert_equals.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