summaryrefslogtreecommitdiff
path: root/ext/node/polyfills
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills')
-rw-r--r--ext/node/polyfills/_fs/_fs_access.ts2
-rw-r--r--ext/node/polyfills/_fs/_fs_chown.ts2
-rw-r--r--ext/node/polyfills/_fs/_fs_lchown.ts2
-rw-r--r--ext/node/polyfills/child_process.ts4
-rw-r--r--ext/node/polyfills/https.ts2
5 files changed, 6 insertions, 6 deletions
diff --git a/ext/node/polyfills/_fs/_fs_access.ts b/ext/node/polyfills/_fs/_fs_access.ts
index b501bcbca..1a9041e30 100644
--- a/ext/node/polyfills/_fs/_fs_access.ts
+++ b/ext/node/polyfills/_fs/_fs_access.ts
@@ -4,8 +4,8 @@
// deno-lint-ignore-file prefer-primordials
import {
- type CallbackWithError,
makeCallback,
+ type CallbackWithError,
} from "ext:deno_node/_fs/_fs_common.ts";
import { fs } from "ext:deno_node/internal_binding/constants.ts";
import { codeMap } from "ext:deno_node/internal_binding/uv.ts";
diff --git a/ext/node/polyfills/_fs/_fs_chown.ts b/ext/node/polyfills/_fs/_fs_chown.ts
index 56364109d..3270095bf 100644
--- a/ext/node/polyfills/_fs/_fs_chown.ts
+++ b/ext/node/polyfills/_fs/_fs_chown.ts
@@ -4,8 +4,8 @@
// deno-lint-ignore-file prefer-primordials
import {
- type CallbackWithError,
makeCallback,
+ type CallbackWithError,
} from "ext:deno_node/_fs/_fs_common.ts";
import {
getValidatedPath,
diff --git a/ext/node/polyfills/_fs/_fs_lchown.ts b/ext/node/polyfills/_fs/_fs_lchown.ts
index 8611c8021..50d777b53 100644
--- a/ext/node/polyfills/_fs/_fs_lchown.ts
+++ b/ext/node/polyfills/_fs/_fs_lchown.ts
@@ -4,8 +4,8 @@
// deno-lint-ignore-file prefer-primordials
import {
- type CallbackWithError,
makeCallback,
+ type CallbackWithError,
} from "ext:deno_node/_fs/_fs_common.ts";
import {
getValidatedPath,
diff --git a/ext/node/polyfills/child_process.ts b/ext/node/polyfills/child_process.ts
index f77a430c2..017318878 100644
--- a/ext/node/polyfills/child_process.ts
+++ b/ext/node/polyfills/child_process.ts
@@ -18,11 +18,11 @@ import {
ChildProcessOptions,
normalizeSpawnArguments,
setupChannel,
- type SpawnOptions,
spawnSync as _spawnSync,
+ stdioStringToArray,
+ type SpawnOptions,
type SpawnSyncOptions,
type SpawnSyncResult,
- stdioStringToArray,
} from "ext:deno_node/internal/child_process.ts";
import {
validateAbortSignal,
diff --git a/ext/node/polyfills/https.ts b/ext/node/polyfills/https.ts
index f60c5e471..c95db6aa2 100644
--- a/ext/node/polyfills/https.ts
+++ b/ext/node/polyfills/https.ts
@@ -13,7 +13,7 @@ import {
} from "node:http";
import { Agent as HttpAgent } from "node:_http_agent";
import { createHttpClient } from "ext:deno_fetch/22_http_client.js";
-import { type ServerHandler, ServerImpl as HttpServer } from "node:http";
+import { ServerImpl as HttpServer, type ServerHandler } from "node:http";
import { validateObject } from "ext:deno_node/internal/validators.mjs";
import { kEmptyObject } from "ext:deno_node/internal/util.mjs";
import { Buffer } from "node:buffer";