(
date: DateArg<Date> & {},
options?: IsThisQuarterOptions,
)
| 28 | * //=> true |
| 29 | */ |
| 30 | export function isThisQuarter( |
| 31 | date: DateArg<Date> & {}, |
| 32 | options?: IsThisQuarterOptions, |
| 33 | ): boolean { |
| 34 | return isSameQuarter( |
| 35 | constructFrom(options?.in || date, date), |
| 36 | constructNow(options?.in || date), |
| 37 | ); |
| 38 | } |
no test coverage detected