@monstermann/fn
Version:
A utility library for TypeScript.
24 lines • 723 B
TypeScript
//#region src/array/slice.d.ts
/**
* `slice(target, start, end?)`
*
* Extracts a section of `target` array from `start` index to `end` index (exclusive). If `end` is not provided, extracts to the end of the array.
*
* ```ts
* slice([1, 2, 3, 4, 5], 1, 4); // [2, 3, 4]
* slice([1, 2, 3, 4, 5], 2); // [3, 4, 5]
* slice([1, 2, 3, 4, 5], -2); // [4, 5]
* ```
*
* ```ts
* pipe([1, 2, 3, 4, 5], slice(1, 4)); // [2, 3, 4]
* pipe([1, 2, 3, 4, 5], slice(2)); // [3, 4, 5]
* pipe([1, 2, 3, 4, 5], slice(-2)); // [4, 5]
* ```
*/
declare const slice: {
<T>(start: number, end?: number): (target: readonly T[]) => T[];
<T>(target: readonly T[], start: number, end?: number): T[];
};
//#endregion
export { slice };