(date: Date)
| 12 | const roundPrice = (value: number) => Math.round(value * 100) / 100; |
| 13 | |
| 14 | const toIsoDay = (date: Date) => date.toISOString().slice(0, 10); |
| 15 | |
| 16 | const getUtcDay = (isoDay: string) => new Date(`${isoDay}T00:00:00Z`); |
| 17 |
no outgoing calls
no test coverage detected