Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib: reduce overhead of
SafePromiseAllSettledReturnVoid
calls
It was simply calling `SafePromiseAllSettled`, which itself calls `arrayToSafePromiseIterable` which wraps all promises into new `SafePromise` object and wraps it into a `SafeArrayIterator`. Since we don't care about the return value, we can take some shortcuts.
- Loading branch information