blob: 105adfb55f2e105eef10a00b212c1b26d82f7294 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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();
export function uvTranslateSysError(sysErrno: number): string {
return op_node_sys_to_uv_error(sysErrno);
}
|