diff options
Diffstat (limited to 'src/bun.js/api/bun.classes.ts')
-rw-r--r-- | src/bun.js/api/bun.classes.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/bun.js/api/bun.classes.ts b/src/bun.js/api/bun.classes.ts index bbb1df944..2f688bb9c 100644 --- a/src/bun.js/api/bun.classes.ts +++ b/src/bun.js/api/bun.classes.ts @@ -21,11 +21,11 @@ export default [ }, writable: { getter: "getStdin", - cache: true, + cache: "stdin", }, readable: { getter: "getStdout", - cache: true, + cache: "stdout", }, stderr: { getter: "getStderr", @@ -56,7 +56,6 @@ export default [ exited: { getter: "getExited", - cache: true, }, }, }), |