(name)
| 627 | const uvUnmappedError = ['UNKNOWN', 'unknown error']; |
| 628 | |
| 629 | function uvErrmapGet(name) { |
| 630 | uvBinding = lazyUv(); |
| 631 | uvBinding.errmap ??= uvBinding.getErrorMap(); |
| 632 | return MapPrototypeGet(uvBinding.errmap, name); |
| 633 | } |
| 634 | |
| 635 | /** |
| 636 | * This creates an error compatible with errors produced in the C++ |
no test coverage detected
searching dependent graphs…