Skip to content

Commit

Permalink
try not throwing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Dahan authored and alexrudd2 committed Sep 27, 2023
1 parent e1fa8da commit 847e304
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ebb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ export class EBB {
}

public async close (): Promise<void> {
return this.port.close()
console.log('unimplemented')
// this.port.close()
return
}

private async write (str: string): Promise<void> {
Expand Down

0 comments on commit 847e304

Please sign in to comment.