( date: DateArg<DateType>, options?: EndOfISOWeekOptions<ResultDate> | undefined, )
| 33 | * //=> Sun Sep 07 2014 23:59:59.999 |
| 34 | */ |
| 35 | export function endOfISOWeek< |
| 36 | DateType extends Date, |
| 37 | ResultDate extends Date = DateType, |
| 38 | >( |
| 39 | date: DateArg<DateType>, |
| 40 | options?: EndOfISOWeekOptions<ResultDate> | undefined, |
| 41 | ): ResultDate { |
| 42 | return endOfWeek(date, { ...options, weekStartsOn: 1 }); |
| 43 | } |