diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-05-18 22:00:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 22:00:11 +0200 |
commit | 4e1ca1d1787f25ab9f0a72ccf9d8028f70b3a7ed (patch) | |
tree | 2d0062ec1dd864c7ed98301119ac5f1c133f844a /runtime/js | |
parent | 5ad8919d642b646caa3328930dd1a3f290bc587e (diff) |
refactor: use spawn API across codebase (#14414)
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/40_spawn.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/js/40_spawn.js b/runtime/js/40_spawn.js index 4f680c7e1..77236ee2b 100644 --- a/runtime/js/40_spawn.js +++ b/runtime/js/40_spawn.js @@ -141,9 +141,6 @@ } async output() { - if (this.#rid === null) { - throw new TypeError("Child process has already terminated."); - } if (this.#stdout?.locked) { throw new TypeError( "Can't collect output because stdout is locked", |