Skip to content

Instantly share code, notes, and snippets.

@myndzi
Last active August 29, 2015 14:18
Show Gist options
  • Select an option

  • Save myndzi/23e226e7aff911aa79ad to your computer and use it in GitHub Desktop.

Select an option

Save myndzi/23e226e7aff911aa79ad to your computer and use it in GitHub Desktop.
var chunksize = 50;
return (function next(items) {
if (!items.length) { return; }
return knex('table')
.insert(items.slice(0, chunksize))
.then(function () {
return next(items.slice(chunksize));
});
})(data())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment