diff options
Diffstat (limited to 'ext/node/polyfills/internal/process/report.ts')
-rw-r--r-- | ext/node/polyfills/internal/process/report.ts | 6 |
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 ""; } |