summaryrefslogtreecommitdiff
path: root/net/bufio.ts
diff options
context:
space:
mode:
Diffstat (limited to 'net/bufio.ts')
-rw-r--r--net/bufio.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/bufio.ts b/net/bufio.ts
index b412cbce8..0dd2b94b4 100644
--- a/net/bufio.ts
+++ b/net/bufio.ts
@@ -185,7 +185,6 @@ export class BufReader implements Reader {
return [nread, nread < p.length ? "EOF" : null];
}
-
/** Returns the next byte [0, 255] or -1 if EOF. */
async readByte(): Promise<number> {
while (this.r === this.w) {