diff options
Diffstat (limited to 'io/writers.ts')
-rw-r--r-- | io/writers.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io/writers.ts b/io/writers.ts index de070d48a..91d19a9d7 100644 --- a/io/writers.ts +++ b/io/writers.ts @@ -5,7 +5,7 @@ import { decode, encode } from "../strings/mod.ts"; /** Writer utility for buffering string chunks */ export class StringWriter implements Writer { private chunks: Uint8Array[] = []; - private byteLength: number = 0; + private byteLength = 0; private cache: string | undefined; constructor(private base: string = "") { |