Skip to content

Commit

Permalink
set inSeuqence to false
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This makes `inSequence: false` the default for asyncMap. It may introduce weird behaviour over the Promise.all solution that is now default.
  • Loading branch information
Arcath committed Apr 27, 2021
1 parent b691271 commit ffcda0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/functions/async-for-each.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface AsyncForEachOptions{
}

const defaultOptions: AsyncForEachOptions = {
inSequence: true
inSequence: false
}

/**
Expand Down

0 comments on commit ffcda0a

Please sign in to comment.