diff options
author | 2023-08-19 00:11:24 -0700 | |
---|---|---|
committer | 2023-08-19 00:11:24 -0700 | |
commit | db09ed15fd561b89b24b979b986e21a04576f7cc (patch) | |
tree | afe32e4eccaf1fe3f2f4cd536c1f2a61efad28c1 /src/bun.js/modules/_NativeModule.h | |
parent | bf517d9f8e993a9ed3a02d21094c3ce76d7953a1 (diff) | |
download | bun-db09ed15fd561b89b24b979b986e21a04576f7cc.tar.gz bun-db09ed15fd561b89b24b979b986e21a04576f7cc.tar.zst bun-db09ed15fd561b89b24b979b986e21a04576f7cc.zip |
tty `ReadStream`, `WriteStream`, and readline rawmode (#4179)
* tty `WriteStream`, `ReadStream`, and rawmode
* tests
* refactor prototypes
* fix failing test
* fix test and library usage
* more merge
* fix child_process test
* create pseudo terminal for tty tests
* match node logic
* handle invalid tty
* close descriptors
* move tests to another process
* fix test again
* fix test on linux
Diffstat (limited to 'src/bun.js/modules/_NativeModule.h')
-rw-r--r-- | src/bun.js/modules/_NativeModule.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bun.js/modules/_NativeModule.h b/src/bun.js/modules/_NativeModule.h index 485987e1c..b23906ad0 100644 --- a/src/bun.js/modules/_NativeModule.h +++ b/src/bun.js/modules/_NativeModule.h @@ -31,7 +31,6 @@ macro("node:module"_s, NodeModule) \ macro("node:process"_s, NodeProcess) \ macro("node:string_decoder"_s, NodeStringDecoder) \ - macro("node:tty"_s, NodeTTY) \ macro("node:util/types"_s, NodeUtilTypes) \ macro("utf-8-validate"_s, UTF8Validate) \ |