(options: NumberFormat = {})
| 39 | formatNumber(bar.elapsedTime(until()) / interval, other) |
| 40 | |
| 41 | export const progress = (options: NumberFormat = {}): Token => bar => |
| 42 | formatNumber(bar.progress() * 100, options) |
| 43 | |
| 44 | export const current = (options: NumberFormat = {}):Token => bar => |
| 45 | formatNumber(bar.current, options) |
nothing calls this directly
no test coverage detected