(
date: DateArg<Date> & {},
options?: IsTomorrowOptions | undefined,
)
| 28 | * //=> true |
| 29 | */ |
| 30 | export function isTomorrow( |
| 31 | date: DateArg<Date> & {}, |
| 32 | options?: IsTomorrowOptions | undefined, |
| 33 | ): boolean { |
| 34 | return isSameDay( |
| 35 | date, |
| 36 | addDays(constructNow(options?.in || date), 1), |
| 37 | options, |
| 38 | ); |
| 39 | } |
no test coverage detected