diff options
Diffstat (limited to 'std/archive/tar.ts')
-rw-r--r-- | std/archive/tar.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/std/archive/tar.ts b/std/archive/tar.ts index 9e417007f..a169d5b4b 100644 --- a/std/archive/tar.ts +++ b/std/archive/tar.ts @@ -493,6 +493,8 @@ class TarEntry implements Reader { this.#read += n || 0; if (n === null || bytesLeft <= 0) { + // FIXME(bartlomieju): this condition makes no sense + // deno-lint-ignore no-constant-condition if (null) this.#consumed = true; return null; } |