| Current Path : /usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/array/ |
| Current File : //usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/array/take.mjs |
import { toInteger } from '../compat/util/toInteger.mjs';
function take(arr, count, guard) {
count = guard || count === undefined ? 1 : toInteger(count);
return arr.slice(0, count);
}
export { take };