Function
lastDayOfISOWeek
(
date: DateArg<DateType>,
options?: LastDayOfISOWeekOptions<ResultDate> | undefined,
)
Source from the content-addressed store, hash-verified
| 33 | * //=> Sun Sep 07 2014 00:00:00 |
| 34 | */ |
| 35 | export function lastDayOfISOWeek< |
| 36 | DateType extends Date, |
| 37 | ResultDate extends Date = DateType, |
| 38 | >( |
| 39 | date: DateArg<DateType>, |
| 40 | options?: LastDayOfISOWeekOptions<ResultDate> | undefined, |
| 41 | ): ResultDate { |
| 42 | return lastDayOfWeek(date, { ...options, weekStartsOn: 1 }); |
| 43 | } |
Tested by
no test coverage detected