* Creates an ELOOP error for too many symbolic links. * @param {string} syscall The system call name * @param {string} path The path * @returns {Error}
(syscall, path)
| 155 | * @returns {Error} |
| 156 | */ |
| 157 | function createELOOP(syscall, path) { |
| 158 | const err = new UVException({ |
| 159 | errno: UV_ELOOP, |
| 160 | syscall, |
| 161 | path, |
| 162 | }); |
| 163 | ErrorCaptureStackTrace(err, createELOOP); |
| 164 | return err; |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * Creates an EACCES error for permission denied. |
no outgoing calls
no test coverage detected