(n: number, decimals = 1)
| 43 | import { formatTimeAgo } from '../lib/utils'; |
| 44 | import { getIESetting } from '../lib/settings'; |
| 45 | import { doneBarColor } from '../lib/ui_helpers'; |
| 46 | |
| 47 | // --- Formatting helpers --------------------------------------------------- |
| 48 | |
| 49 | function fmtInt(n: number): string { |
| 50 | return Math.round(n).toLocaleString(); |
| 51 | } |