Skip to content

Instantly share code, notes, and snippets.

@kharandziuk
Created May 31, 2018 09:48
Show Gist options
  • Select an option

  • Save kharandziuk/647b5b09b12a9bb2c24b1ef9c1489302 to your computer and use it in GitHub Desktop.

Select an option

Save kharandziuk/647b5b09b12a9bb2c24b1ef9c1489302 to your computer and use it in GitHub Desktop.
async function grab(offset = 0, rows = 1000) {
while(true) {
const items = await getAPI(offset, rows)
if (_.isEmpty(items)) {
break
}
await insertDB(items)
offset = offset + rows
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment