This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
StasisWarden-Legacy/node_modules/es-toolkit/dist/array/takeRight.mjs
T

12 lines
305 B
JavaScript

import { toInteger } from '../compat/util/toInteger.mjs';
function takeRight(arr, count = 1, guard) {
count = guard || count === undefined ? 1 : toInteger(count);
if (count <= 0 || arr == null || arr.length === 0) {
return [];
}
return arr.slice(-count);
}
export { takeRight };