(options: NumberFormat = {})
| 42 | formatNumber(bar.progress() * 100, options) |
| 43 | |
| 44 | export const current = (options: NumberFormat = {}):Token => bar => |
| 45 | formatNumber(bar.current, options) |
| 46 | |
| 47 | export const total = (options: NumberFormat = {}):Token => bar => |
| 48 | formatNumber(bar.total, options) |
nothing calls this directly
no test coverage detected