(value: number)
| 318 | } |
| 319 | |
| 320 | function roundTime(value: number): number { |
| 321 | return Math.round(value * 1000) / 1000; |
| 322 | } |
| 323 | |
| 324 | function roundPx(value: number): number { |
| 325 | return Math.round(value * 100) / 100; |
no outgoing calls
no test coverage detected