Skip to content

Instantly share code, notes, and snippets.

@ArsenyYankovsky
Created September 6, 2020 16:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ArsenyYankovsky/692304f85344bef16be8f70d32e6e5b1 to your computer and use it in GitHub Desktop.
Save ArsenyYankovsky/692304f85344bef16be8f70d32e6e5b1 to your computer and use it in GitHub Desktop.
export const saveBooks = (books) => {
const chunks = chunk(books, 100)
return Promise.all(chunks.map(booksChunk => saveBooksChunk(booksChunk)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment