feat: make bufio compatible to deploy (#831)

This commit is contained in:
Yoshiya Hinosawa 2021-04-02 09:29:32 +09:00 committed by GitHub
parent fee2e9d441
commit 1d92651201
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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() {