(basePath: string, ...segments: ReadonlyArray<string>)
| 13 | const rootDir = resolvePath('..'); |
| 14 | |
| 15 | const joinToPath = (basePath: string, ...segments: ReadonlyArray<string>) => |
| 16 | pipe( |
| 17 | Path.Path, |
| 18 | Effect.andThen((path) => path.join(basePath, ...segments)) |
| 19 | ); |
| 20 | |
| 21 | const readFileAsString = (filePath: string) => |
| 22 | pipe( |
no outgoing calls
no test coverage detected