(deps: StaticDiffPagerDeps)
| 360 | } |
| 361 | |
| 362 | function resolveStaticWidth(deps: StaticDiffPagerDeps) { |
| 363 | return Math.max( |
| 364 | MIN_STATIC_WIDTH, |
| 365 | Math.floor(deps.terminalColumns ?? process.stdout.columns ?? DEFAULT_STATIC_WIDTH), |
| 366 | ); |
| 367 | } |
| 368 | |
| 369 | function warnFallback(deps: StaticDiffPagerDeps, reason: string) { |
| 370 | deps.stderr?.write( |
no outgoing calls
no test coverage detected