diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-03-20 11:20:18 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-20 11:20:18 +0530 |
commit | 724cdcec7bcee49fdd0f34b35fbfbbf556c7eda3 (patch) | |
tree | 5761cc212e807abef7b1619bbee203dcdef42d7d /ext/node/polyfills/events.ts | |
parent | 5b2f689f085fea8ff52f296c94072a1fb29dd054 (diff) |
fix(ext/node): implement EventEmitterAsyncResource (#22994)
Fixes #22729
Diffstat (limited to 'ext/node/polyfills/events.ts')
-rw-r--r-- | ext/node/polyfills/events.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/polyfills/events.ts b/ext/node/polyfills/events.ts index 6e7b52791..3b7381410 100644 --- a/ext/node/polyfills/events.ts +++ b/ext/node/polyfills/events.ts @@ -6,6 +6,7 @@ export { defaultMaxListeners, errorMonitor, EventEmitter, + EventEmitterAsyncResource, getEventListeners, listenerCount, on, |