(...segments: readonly string[])
| 137 | name === 'node_modules' || name === '.git' || name === 'dist'; |
| 138 | |
| 139 | const joinPath = (...segments: readonly string[]) => |
| 140 | pipe( |
| 141 | Path.Path, |
| 142 | Effect.andThen((path) => path.join(...segments)) |
| 143 | ); |
| 144 | |
| 145 | const processFullPath = |
| 146 | ( |
no outgoing calls
no test coverage detected