diff options
author | 2023-01-22 02:40:18 -0800 | |
---|---|---|
committer | 2023-01-22 02:40:18 -0800 | |
commit | 9f6658b9813f69ecb5f982dad3969af6b454138b (patch) | |
tree | af794c43a871d3b6e14b3f4671f755468b9c91b0 /src/bun.js/builtins/js/ProcessObjectInternals.js | |
parent | 5ce2b8e604047d99c0ff33a41194c6f4d0d23c39 (diff) | |
download | bun-9f6658b9813f69ecb5f982dad3969af6b454138b.tar.gz bun-9f6658b9813f69ecb5f982dad3969af6b454138b.tar.zst bun-9f6658b9813f69ecb5f982dad3969af6b454138b.zip |
stub out process.stdin.setRawMode
Diffstat (limited to '')
-rw-r--r-- | src/bun.js/builtins/js/ProcessObjectInternals.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bun.js/builtins/js/ProcessObjectInternals.js b/src/bun.js/builtins/js/ProcessObjectInternals.js index 792f59ec3..e23e516b8 100644 --- a/src/bun.js/builtins/js/ProcessObjectInternals.js +++ b/src/bun.js/builtins/js/ProcessObjectInternals.js @@ -510,6 +510,7 @@ function getStdinStream(fd_, rawRequire, Bun) { } } + setRawMode(mode) {} on(name, callback) { // Streams don't generally required to present any data when only // `readable` events are present, i.e. `readableFlowing === false` |