Skip to content

Commit 8ff4e41

Browse files
committed
fix: fmt
1 parent d853321 commit 8ff4e41

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

writables/std.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class StdWritableStream extends WritableStream<Uint8Array> {
4747
write: async (chunk) => {
4848
await globalThis.Deno[stream].write(chunk);
4949
},
50-
}
50+
};
5151
break;
5252
case "bun":
5353
// 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> {
6666
case "unknown": {
6767
const decoder = new TextDecoder();
6868
let buffer = "";
69-
const write = stream === "stdout" ? originalConsole.log : originalConsole.error;
69+
const write = stream === "stdout"
70+
? originalConsole.log
71+
: originalConsole.error;
7072

7173
sink = {
7274
write: (chunk) => {

0 commit comments

Comments
 (0)