diff options
Diffstat (limited to 'io/bufio.ts')
-rw-r--r-- | io/bufio.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io/bufio.ts b/io/bufio.ts index 3291c8a07..213870c3c 100644 --- a/io/bufio.ts +++ b/io/bufio.ts @@ -407,7 +407,7 @@ export class BufReader implements Reader { */ export class BufWriter implements Writer { buf: Uint8Array; - n: number = 0; + n = 0; err: Error | null = null; /** return new BufWriter unless w is BufWriter */ |