Skip to content

process is not defined #540

@sandeepworks25

Description

@sandeepworks25

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch readable-stream@3.6.2 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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions