diff options
Diffstat (limited to 'ext/node/polyfills/internal/streams')
-rw-r--r-- | ext/node/polyfills/internal/streams/add-abort-signal.mjs | 5 | ||||
-rw-r--r-- | ext/node/polyfills/internal/streams/destroy.mjs | 5 | ||||
-rw-r--r-- | ext/node/polyfills/internal/streams/end-of-stream.mjs | 5 |
3 files changed, 12 insertions, 3 deletions
diff --git a/ext/node/polyfills/internal/streams/add-abort-signal.mjs b/ext/node/polyfills/internal/streams/add-abort-signal.mjs index 497fc4941..515d0e0f1 100644 --- a/ext/node/polyfills/internal/streams/add-abort-signal.mjs +++ b/ext/node/polyfills/internal/streams/add-abort-signal.mjs @@ -2,7 +2,10 @@ // Copyright Joyent and Node contributors. All rights reserved. MIT license. // deno-lint-ignore-file -import { AbortError, ERR_INVALID_ARG_TYPE } from "ext:deno_node/internal/errors.ts"; +import { + AbortError, + ERR_INVALID_ARG_TYPE, +} from "ext:deno_node/internal/errors.ts"; import eos from "ext:deno_node/internal/streams/end-of-stream.mjs"; // This method is inlined here for readable-stream diff --git a/ext/node/polyfills/internal/streams/destroy.mjs b/ext/node/polyfills/internal/streams/destroy.mjs index bdca4dacd..74e6687db 100644 --- a/ext/node/polyfills/internal/streams/destroy.mjs +++ b/ext/node/polyfills/internal/streams/destroy.mjs @@ -2,7 +2,10 @@ // Copyright Joyent and Node contributors. All rights reserved. MIT license. // deno-lint-ignore-file -import { aggregateTwoErrors, ERR_MULTIPLE_CALLBACK } from "ext:deno_node/internal/errors.ts"; +import { + aggregateTwoErrors, + ERR_MULTIPLE_CALLBACK, +} from "ext:deno_node/internal/errors.ts"; import * as process from "ext:deno_node/_process/process.ts"; const kDestroy = Symbol("kDestroy"); 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, |