UNPKG

typedash

Version:

modern, type-safe collection of utility functions

11 lines (10 loc) 232 B
// src/functions/take/take.ts function take(array, count) { if (count <= 0) { return []; } return array?.slice(0, count) ?? []; } export { take }; //# sourceMappingURL=out.js.map //# sourceMappingURL=chunk-47U7EDRR.js.map