From efeba9de4ac204c4e51fe4e2b168d2fed0844c9d Mon Sep 17 00:00:00 2001 From: ThaUnknown <6506529+ThaUnknown@users.noreply.github.com> Date: Thu, 25 Jul 2024 17:28:23 +0200 Subject: [PATCH] fix: import fswfs correctly --- src/createWritable.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/createWritable.js b/src/createWritable.js index 6b6ce9b..b3fb3b5 100644 --- a/src/createWritable.js +++ b/src/createWritable.js @@ -1,3 +1,4 @@ +import FileSystemWritableFileStream from './FileSystemWritableFileStream.js' import { errors } from './util.js' const { INVALID, SYNTAX, GONE } = errors @@ -167,7 +168,7 @@ if ( async abort (reason) { await send({ type: 'abort', reason }) worker.terminate() - }, + } }) return ws