From 847e3049705a32fc703bc3a48bcd9f99303c3bce Mon Sep 17 00:00:00 2001 From: Jonathan Dahan Date: Fri, 22 Sep 2023 18:08:29 -0400 Subject: [PATCH] try not throwing --- src/ebb.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ebb.ts b/src/ebb.ts index 03dcf0d..f53d777 100644 --- a/src/ebb.ts +++ b/src/ebb.ts @@ -68,7 +68,9 @@ export class EBB { } public async close (): Promise { - return this.port.close() + console.log('unimplemented') + // this.port.close() + return } private async write (str: string): Promise {