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

const { ops } = globalThis.__bootstrap.core;

export function uvTranslateSysError(sysErrno: number): string {
  return ops.op_node_sys_to_uv_error(sysErrno);
}