Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix PromiseQueue returning null when there are no jobs (#738)
* fix PromiseQueue returning null when there are no jobs When PromiseQueue is called with no jobs it returns null instead of a promise that is already resolved with an empty set. This causes "await run()" to evaluate to null, and a "Cannot read property 'Symbol(Symbol.iterator)' of null" error. Fixes #664 * Formatting
- Loading branch information