For AI agents: the complete documentation index is available at /llms.txt, the full documentation bundle is available at /llms-full.txt, and this page is available as Markdown at /reference/fp/drop.md.

drop (Functional Programming) es-toolkit

Creates a function that drops values from the beginning of an array. Use it with pipe.

const result = pipe(array, drop(count));
Info

Prefer the original es-toolkit drop in ordinary code. Use this fp variant when composing transformations with pipe.

Usage

drop removes the first count values from the piped array. It is lazy-capable inside pipe.

import { drop, pipe } from 'es-toolkit/fp';

pipe([1, 2, 3, 4], drop(2)); // => [3, 4]

Parameters

countnumberrequired

The number of values to drop from the beginning.

Returns

A function that maps a readonly T[] to the remaining values.

(array: readonly T[]) => T[]
Source: es-toolkit

Re-exported verbatim from es-toolkit. Implementation, edge cases, and performance behavior are owned upstream. This page mirrors the documentation at the pinned version; the linked source is authoritative.