diff options
Diffstat (limited to 'ext/node/polyfills/internal/streams/end-of-stream.mjs')
-rw-r--r-- | ext/node/polyfills/internal/streams/end-of-stream.mjs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/node/polyfills/internal/streams/end-of-stream.mjs b/ext/node/polyfills/internal/streams/end-of-stream.mjs index 021880e89..1b875aab8 100644 --- a/ext/node/polyfills/internal/streams/end-of-stream.mjs +++ b/ext/node/polyfills/internal/streams/end-of-stream.mjs @@ -2,7 +2,10 @@ // Copyright Joyent and Node contributors. All rights reserved. MIT license. // deno-lint-ignore-file -import { AbortError, ERR_STREAM_PREMATURE_CLOSE } from "ext:deno_node/internal/errors.ts"; +import { + AbortError, + ERR_STREAM_PREMATURE_CLOSE, +} from "ext:deno_node/internal/errors.ts"; import { once } from "ext:deno_node/internal/util.mjs"; import { validateAbortSignal, |