Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
events: allow the options argument to be null
Make `EventTarget.prototype.addEventListener()` accept `null` as a valid
value for the `options` argument.
  • Loading branch information
lpinca committed Jul 22, 2021
commit 82a9bbd4243f7fb9b28c049ac41c9a0def7b5212
3 changes: 3 additions & 0 deletions lib/internal/event_target.js
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,9 @@ function shouldAddListener(listener) {
function validateEventListenerOptions(options) {
if (typeof options === 'boolean')
return { capture: options };

if (options === null)
return {};
validateObject(options, 'options', {
allowArray: true, allowFunction: true,
});
Expand Down
9 changes: 9 additions & 0 deletions test/parallel/test-eventtarget.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,15 @@ let asyncTest = Promise.resolve();
eventTarget.dispatchEvent(event);
}

{
// The `options` argument can be `null`.
const eventTarget = new EventTarget();
const event = new Event('foo');
const fn = common.mustCall((event) => strictEqual(event.type, 'foo'));
eventTarget.addEventListener('foo', fn, null);
eventTarget.dispatchEvent(event);
}

{
const uncaughtException = common.mustCall((err, origin) => {
strictEqual(err.message, 'boom');
Expand Down