summaryrefslogtreecommitdiff
path: root/io/bufio.ts
diff options
context:
space:
mode:
Diffstat (limited to 'io/bufio.ts')
-rw-r--r--io/bufio.ts2
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 */