(path: string)
| 7 | } |
| 8 | |
| 9 | async function isDirectory(path: string) { |
| 10 | try { |
| 11 | const info = await lstat(path) |
| 12 | return info.isDirectory() |
| 13 | } catch { |
| 14 | return false |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | const isValidSemver = (v: string) => Bun.semver.satisfies(v, "x.x.x") |
| 19 |
no outgoing calls
no test coverage detected