From e249378fdfebdb0e513cc692b581dad49efd9af1 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 18 Dec 2018 18:56:12 -0500 Subject: Add format script. Original: https://github.com/denoland/deno_std/commit/85ff88b0cc076d1a79fd15ddf4475270765bcfda --- net/bufio.ts | 1 - 1 file changed, 1 deletion(-) (limited to 'net') 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 { while (this.r === this.w) { -- cgit v1.2.3