(p: string)
| 15 | import type { RuntimeFlags } from "@/effect/runtime-flags" |
| 16 | |
| 17 | const pathExists = async (p: string) => |
| 18 | fs |
| 19 | .stat(p) |
| 20 | .then(() => true) |
| 21 | .catch(() => false) |
| 22 | const run = (cmd: string[], opts: Process.RunOptions = {}) => Process.run(cmd, { ...opts, nothrow: true }) |
| 23 | const output = (cmd: string[], opts: Process.RunOptions = {}) => Process.text(cmd, { ...opts, nothrow: true }) |
| 24 |
no outgoing calls
no test coverage detected