(error: any)
| 128 | * test this logic more easily. |
| 129 | */ |
| 130 | export const handleArgsSocketCatchError = (error: any) => { |
| 131 | if (!isNodeJSErrnoException(error) || error.code !== "ENOENT") { |
| 132 | throw Error(error.message ? error.message : error) |
| 133 | } |
| 134 | } |
no test coverage detected