Skip to content

Commit

Permalink
events: convert errorMonitor to a normal property
Browse files Browse the repository at this point in the history
Convert property errorMonitor to a normal property as non-writable
caused unwanted side effects.

Refs: nodejs#30932 (comment)
  • Loading branch information
Flarna committed Apr 6, 2020
1 parent 1c14d65 commit c483e6d
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions lib/events.js
Expand Up @@ -89,12 +89,7 @@ ObjectDefineProperty(EventEmitter, 'captureRejections', {
enumerable: true
});

ObjectDefineProperty(EventEmitter, 'errorMonitor', {
value: kErrorMonitor,
writable: false,
configurable: true,
enumerable: true
});
EventEmitter.errorMonitor = kErrorMonitor;

// The default for captureRejections is false
ObjectDefineProperty(EventEmitter.prototype, kCapture, {
Expand Down

0 comments on commit c483e6d

Please sign in to comment.