(options = {})
| 403 | }); |
| 404 | }, |
| 405 | async diff(options = {}) { |
| 406 | const f = await fs(); |
| 407 | return diffWith({ |
| 408 | ...options, |
| 409 | fs: f, |
| 410 | git: await loadGit<IsomorphicGitDiffClient>(), |
| 411 | createPatch: await loadDiffPatch(), |
| 412 | readFile: readFileFrom(f), |
| 413 | cache, |
| 414 | }); |
| 415 | }, |
| 416 | async diffSummary(options = {}) { |
| 417 | const f = await fs(); |
| 418 | return diffSummaryWith({ |
nothing calls this directly
no test coverage detected