readable-stream
readable-stream copied to clipboard
process is not defined
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch [email protected]
for the project I'm working on.
Here is the diff that solved my problem:
diff --git a/node_modules/readable-stream/lib/_stream_readable.js b/node_modules/readable-stream/lib/_stream_readable.js
index df1f608..8d8a808 100644
--- a/node_modules/readable-stream/lib/_stream_readable.js
+++ b/node_modules/readable-stream/lib/_stream_readable.js
@@ -487,7 +487,7 @@ function emitReadable(stream) {
if (!state.emittedReadable) {
debug('emitReadable', state.flowing);
state.emittedReadable = true;
- process.nextTick(emitReadable_, stream);
+ setTimeout(() => emitReadable_(stream), 0);
}
}
function emitReadable_(stream) {
This issue body was partially generated by patch-package.