(n: number)
| 10 | import {Statistic} from '../statistic'; |
| 11 | |
| 12 | export function formatNum(n: number) { |
| 13 | return n.toFixed(2); |
| 14 | } |
| 15 | |
| 16 | export function sortedProps(obj: {[key: string]: any}) { |
| 17 | return Object.keys(obj).sort(); |
no outgoing calls
no test coverage detected
searching dependent graphs…