UNPKG

scrapper-tools

Version:

Its in development but I use it in all my web automation project.

7 lines 152 B
export default (array, size) => { var results = [] while (array.length) { results.push(array.splice(0, size)) } return results }