(options?: EndOfYesterdayOptions<ResultDate> | undefined)
| 29 | * //=> Sun Oct 5 2014 23:59:59.999 |
| 30 | */ |
| 31 | export function endOfYesterday< |
| 32 | DateType extends Date, |
| 33 | ResultDate extends Date = DateType, |
| 34 | >(options?: EndOfYesterdayOptions<ResultDate> | undefined): ResultDate { |
| 35 | const now = constructNow(options?.in); |
| 36 | const date = constructFrom(options?.in, 0); |
| 37 | date.setFullYear(now.getFullYear(), now.getMonth(), now.getDate() - 1); |
| 38 | date.setHours(23, 59, 59, 999); |
| 39 | return date; |
| 40 | } |
no test coverage detected