We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No response
const { BroadcastChannel } = require('worker_threads') const c = new BroadcastChannel("x") if (c.onmessage !== null) throw "fail" // it's undefined
Rabbit hole: browsers and deno agree .onmessage and .onmessageerror are getters+setters inherited from EventTarget.
.onmessage
.onmessageerror
EventTarget
The text was updated successfully, but these errors were encountered:
This is a problem with how we do event handlers - it needs to always return null. I'll open a PR.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Version
No response
Platform
No response
Subsystem
No response
What steps will reproduce the bug?
How often does it reproduce? Is there a required condition?
No response
What is the expected behavior?
No response
What do you see instead?
Additional information
Rabbit hole: browsers and deno agree
.onmessage
and.onmessageerror
are getters+setters inherited fromEventTarget
.The text was updated successfully, but these errors were encountered: