(path: string[])
| 39 | } |
| 40 | |
| 41 | export function pathString(path: string[]): string { |
| 42 | return `/${path ? path.join("/") : ""}`; |
| 43 | } |
| 44 | |
| 45 | export function formatNumber(num: number) { |
| 46 | const parts = num.toFixed(2).split("."); |
no outgoing calls
no test coverage detected
searching dependent graphs…