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
In utils we use:
const kDestroyed = Symbol('kDestroyed') const kIsErrored = Symbol('kIsErrored') const kIsReadable = Symbol('kIsReadable') const kIsDisturbed = Symbol('kIsDisturbed')
But that means that using helper methods with node core stream will give incorrect results. I believe we need to also check the methods from 'stream'.
Alternatively change the core implementation to not use symbols...
The text was updated successfully, but these errors were encountered:
See nodejs/undici@213cbfe
Sorry, something went wrong.
Is there any way to get those Symbols out from Node.js core? If not, we should make some change there first.
No branches or pull requests
In utils we use:
const kDestroyed = Symbol('kDestroyed')
const kIsErrored = Symbol('kIsErrored')
const kIsReadable = Symbol('kIsReadable')
const kIsDisturbed = Symbol('kIsDisturbed')
But that means that using helper methods with node core stream will give incorrect results. I believe we need to also check the methods from 'stream'.
Alternatively change the core implementation to not use symbols...
The text was updated successfully, but these errors were encountered: