From 515a34b4de222e35c7ade1b92614d746e73d4c2e Mon Sep 17 00:00:00 2001 From: Kenta Moriuchi Date: Thu, 11 Jan 2024 07:37:25 +0900 Subject: refactor: use `core.ensureFastOps()` (#21888) --- ext/node/polyfills/internal/process/report.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/node/polyfills/internal/process') 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 ""; } -- cgit v1.2.3