summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal/stream_base_commons.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/internal/stream_base_commons.ts')
-rw-r--r--ext/node/polyfills/internal/stream_base_commons.ts18
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/node/polyfills/internal/stream_base_commons.ts b/ext/node/polyfills/internal/stream_base_commons.ts
index dd1c74d0f..6dccc1354 100644
--- a/ext/node/polyfills/internal/stream_base_commons.ts
+++ b/ext/node/polyfills/internal/stream_base_commons.ts
@@ -20,7 +20,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-import { ownerSymbol } from "internal:deno_node/polyfills/internal/async_hooks.ts";
+import { ownerSymbol } from "internal:deno_node/internal/async_hooks.ts";
import {
kArrayBufferOffset,
kBytesWritten,
@@ -28,17 +28,17 @@ import {
LibuvStreamWrap,
streamBaseState,
WriteWrap,
-} from "internal:deno_node/polyfills/internal_binding/stream_wrap.ts";
-import { isUint8Array } from "internal:deno_node/polyfills/internal/util/types.ts";
-import { errnoException } from "internal:deno_node/polyfills/internal/errors.ts";
+} from "internal:deno_node/internal_binding/stream_wrap.ts";
+import { isUint8Array } from "internal:deno_node/internal/util/types.ts";
+import { errnoException } from "internal:deno_node/internal/errors.ts";
import {
getTimerDuration,
kTimeout,
-} from "internal:deno_node/polyfills/internal/timers.mjs";
-import { setUnrefTimeout } from "internal:deno_node/polyfills/timers.ts";
-import { validateFunction } from "internal:deno_node/polyfills/internal/validators.mjs";
-import { codeMap } from "internal:deno_node/polyfills/internal_binding/uv.ts";
-import { Buffer } from "internal:deno_node/polyfills/buffer.ts";
+} from "internal:deno_node/internal/timers.mjs";
+import { setUnrefTimeout } from "internal:deno_node/timers.ts";
+import { validateFunction } from "internal:deno_node/internal/validators.mjs";
+import { codeMap } from "internal:deno_node/internal_binding/uv.ts";
+import { Buffer } from "internal:deno_node/buffer.ts";
export const kMaybeDestroy = Symbol("kMaybeDestroy");
export const kUpdateTimer = Symbol("kUpdateTimer");