(options = {})
| 491 | return repoRootWith({ ...options, fs: await fs() }); |
| 492 | }, |
| 493 | async currentBranch(options = {}) { |
| 494 | return currentBranchWith({ |
| 495 | ...options, |
| 496 | fs: await fs(), |
| 497 | git: await loadGit<IsomorphicGitReadsClient>(), |
| 498 | }); |
| 499 | }, |
| 500 | async lsFiles(options = {}) { |
| 501 | return lsFilesWith({ |
| 502 | ...options, |
nothing calls this directly
no test coverage detected