You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While we are doing a semver upgrade we may also want to migrate to use https://www.npmjs.com/package/eventemitter3 which appears to be a much less bloated; and more optimised version over the EventEmitter compared to what I've seen in the NodeJS core.
The text was updated successfully, but these errors were encountered:
We do not throw an error when you emit an error event and nobody is listening.
The newListener and removeListener events have been removed as they are useful only in some uncommon use-cases.
But we can get around these limitations.
Just a note that AsyncIterator might be bundled together with other Node.js code, which would use the native EventEmitter, so it's not certain that we would remove bloat. But happy to give it a go.
While we are doing a semver upgrade we may also want to migrate to use https://www.npmjs.com/package/eventemitter3 which appears to be a much less bloated; and more optimised version over the
EventEmitter
compared to what I've seen in the NodeJS core.The text was updated successfully, but these errors were encountered: