UNPKG

@thi.ng/arrays

Version:

Array / Arraylike utilities

11 lines (10 loc) 154 B
const into = (dest, src, max = Infinity) => { for (let x of src) { if (--max < 0) break; dest.push(x); } return dest; }; export { into };