()
| 29 | try { |
| 30 | for (const path of elements) { |
| 31 | const checkAccess = () => |
| 32 | access(path, constants.F_OK) |
| 33 | .then(() => true) |
| 34 | .catch(() => false) |
| 35 | if (!(await checkAccess())) { |
| 36 | let resolveCheckAgain = () => {} |
| 37 | const watcher = watch(dirname(path), () => { |
no test coverage detected