From 1d92651201b5bc037ead1a87ec885f341a6ad0b7 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Fri, 2 Apr 2021 09:29:32 +0900 Subject: [PATCH] feat: make bufio compatible to deploy (#831) --- io/bufio.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/bufio.ts b/io/bufio.ts index 0e23d0c96..44c8319b9 100644 --- a/io/bufio.ts +++ b/io/bufio.ts @@ -25,7 +25,7 @@ export class BufferFullError extends Error { } } -export class PartialReadError extends Deno.errors.UnexpectedEof { +export class PartialReadError extends Error { name = "PartialReadError"; partial?: Uint8Array; constructor() {