@newdash/newdash
Version:
javascript/typescript utility library
27 lines (26 loc) • 548 B
TypeScript
/**
* Creates a slice of `array` with `n` elements taken from the end.
*
* @since 5.6.0
* @category Array
* @param array The array to query.
* @param n The number of elements to take.
* @returns Returns the slice of `array`.
* @example
*
* ```js
* takeRight([1, 2, 3])
* // => [3]
*
* takeRight([1, 2, 3], 2)
* // => [2, 3]
*
* takeRight([1, 2, 3], 5)
* // => [1, 2, 3]
*
* takeRight([1, 2, 3], 0)
* // => []
* ```
*/
export declare function takeRight<T>(array: ArrayLike<T>, n?: number): Array<T>;
export default takeRight;