summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal_binding/_libuv_winerror.ts
blob: 3ba7d9cdaed727af907e19767b2421ee24549364 (plain)
1
2
3
4
5
6
7
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

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);
}