diff options
author | 2023-01-16 23:44:09 -0800 | |
---|---|---|
committer | 2023-01-16 23:44:09 -0800 | |
commit | 12b8416b640e46fd8163b6fdeca4edaca4ef099c (patch) | |
tree | 4db940dd912f35c3e66cb053df80f657b50ea70a | |
parent | 8a5ff676eaedd6ab29b5093f0339a4e39fa35c69 (diff) | |
download | bun-12b8416b640e46fd8163b6fdeca4edaca4ef099c.tar.gz bun-12b8416b640e46fd8163b6fdeca4edaca4ef099c.tar.zst bun-12b8416b640e46fd8163b6fdeca4edaca4ef099c.zip |
send and disconnect
-rw-r--r-- | src/bun.js/child_process.exports.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/bun.js/child_process.exports.js b/src/bun.js/child_process.exports.js index cbf7082ae..7af8bdebd 100644 --- a/src/bun.js/child_process.exports.js +++ b/src/bun.js/child_process.exports.js @@ -1131,6 +1131,16 @@ export class ChildProcess extends EventEmitter { // if (ipc !== undefined) setupChannel(this, ipc, serialization); } + send() { + console.log("ChildProcess.prototype.send() - Sorry! Not implemented yet"); + } + + disconnect() { + console.log( + "ChildProcess.prototype.disconnect() - Sorry! Not implemented yet", + ); + } + kill(sig) { const signal = sig === 0 |