MCPcopy Index your code
hub / github.com/nodejs/node / drop

Method drop

deps/undici/src/types/fetch.d.ts:73–73  ·  view source on GitHub ↗
(count: number)

Source from the content-addressed store, hash-verified

71 filter(predicate: (value: T, index: number) => unknown): SpecIteratorObject<T>;
72 take(limit: number): SpecIteratorObject<T>;
73 drop(count: number): SpecIteratorObject<T>;
74 flatMap<U>(callbackfn: (value: T, index: number) => Iterator<U> | Iterable<U>): SpecIteratorObject<U>;
75 reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number) => T): T;
76 reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number) => T, initialValue: T): T;

Calls

no outgoing calls

Tested by

no test coverage detected