summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal/process
diff options
context:
space:
mode:
authorKenta Moriuchi <moriken@kimamass.com>2024-01-11 07:37:25 +0900
committerGitHub <noreply@github.com>2024-01-10 15:37:25 -0700
commit515a34b4de222e35c7ade1b92614d746e73d4c2e (patch)
tree8284201fc826a33f12597959a8a8be14e0f524bd /ext/node/polyfills/internal/process
parentd4893eb51a01c5a692d8ca74a3b8ff95c5fd1d9f (diff)
refactor: use `core.ensureFastOps()` (#21888)
Diffstat (limited to 'ext/node/polyfills/internal/process')
-rw-r--r--ext/node/polyfills/internal/process/report.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/node/polyfills/internal/process/report.ts b/ext/node/polyfills/internal/process/report.ts
index 2d81b4ce8..c4a1ff561 100644
--- a/ext/node/polyfills/internal/process/report.ts
+++ b/ext/node/polyfills/internal/process/report.ts
@@ -1,8 +1,5 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-import { arch, versions } from "ext:deno_node/_process/process.ts";
-import { cpus, hostname, networkInterfaces } from "node:os";
-
import { primordials } from "ext:core/mod.js";
const {
Error,
@@ -13,6 +10,9 @@ const {
DatePrototypeGetTime,
} = primordials;
+import { arch, versions } from "ext:deno_node/_process/process.ts";
+import { cpus, hostname, networkInterfaces } from "node:os";
+
function writeReport(_filename: string, _err: typeof Error) {
return "";
}