(p: string)
| 95 | |
| 96 | const full = (p: string) => (process.platform === "win32" ? Filesystem.normalizePath(p) : p) |
| 97 | const glob = (p: string) => |
| 98 | process.platform === "win32" ? Filesystem.normalizePathPattern(p) : p.replaceAll("\\", "/") |
| 99 | const githubBase = <A, E, R>(url: string, self: Effect.Effect<A, E, R>) => |
| 100 | Effect.acquireUseRelease( |
| 101 | Effect.sync(() => { |
no outgoing calls
no test coverage detected