Update pipe-ipc.js

This commit is contained in:
Namhyeon Go 2022-09-27 18:36:58 +09:00 committed by GitHub
parent 1ed17cc5c0
commit c3cec2bba7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,7 +90,7 @@ function PipeIPC() {
if (typeof callback === "function") {
while (isNext) {
isNext = callback(this, this.read());
isNext = callback(this, this.read()) || true;
}
}
};