We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d853321 commit 8ff4e41Copy full SHA for 8ff4e41
writables/std.ts
@@ -47,7 +47,7 @@ export class StdWritableStream extends WritableStream<Uint8Array> {
47
write: async (chunk) => {
48
await globalThis.Deno[stream].write(chunk);
49
},
50
- }
+ };
51
break;
52
case "bun":
53
// Once https://github.com/oven-sh/bun/issues/3927 is completed we can use the node code for bun.
@@ -66,7 +66,9 @@ export class StdWritableStream extends WritableStream<Uint8Array> {
66
case "unknown": {
67
const decoder = new TextDecoder();
68
let buffer = "";
69
- const write = stream === "stdout" ? originalConsole.log : originalConsole.error;
+ const write = stream === "stdout"
70
+ ? originalConsole.log
71
+ : originalConsole.error;
72
73
sink = {
74
write: (chunk) => {
0 commit comments