summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal_binding/_libuv_winerror.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/internal_binding/_libuv_winerror.ts')
-rw-r--r--ext/node/polyfills/internal_binding/_libuv_winerror.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/ext/node/polyfills/internal_binding/_libuv_winerror.ts b/ext/node/polyfills/internal_binding/_libuv_winerror.ts
index 105adfb55..3ba7d9cda 100644
--- a/ext/node/polyfills/internal_binding/_libuv_winerror.ts
+++ b/ext/node/polyfills/internal_binding/_libuv_winerror.ts
@@ -1,9 +1,6 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-import { core } from "ext:core/mod.js";
-const {
- op_node_sys_to_uv_error,
-} = core.ensureFastOps();
+import { op_node_sys_to_uv_error } from "ext:core/ops";
export function uvTranslateSysError(sysErrno: number): string {
return op_node_sys_to_uv_error(sysErrno);