(syscall, path)
| 181 | } |
| 182 | |
| 183 | function createEXDEV(syscall, path) { |
| 184 | const err = new UVException({ |
| 185 | errno: UV_EXDEV, |
| 186 | syscall, |
| 187 | path, |
| 188 | }); |
| 189 | ErrorCaptureStackTrace(err, createEXDEV); |
| 190 | return err; |
| 191 | } |
| 192 | |
| 193 | module.exports = { |
| 194 | createENOENT, |
no outgoing calls
no test coverage detected
searching dependent graphs…