(date: Date, hours: number)
| 114 | } |
| 115 | |
| 116 | function addHours(date: Date, hours: number): Date { |
| 117 | return new Date(date.getTime() + hours * 60 * 60 * 1000) |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Get the start of the current billing-aligned week. |
no outgoing calls
no test coverage detected