UNPKG

753 BTypeScriptView Raw
1/**
2 * @name isThisQuarter
3 * @category Quarter Helpers
4 * @summary Is the given date in the same quarter as the current date?
5 * @pure false
6 *
7 * @description
8 * Is the given date in the same quarter as the current date?
9 *
10 * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).
11 *
12 * @param date - The date to check
13 *
14 * @returns The date is in this quarter
15 *
16 * @example
17 * // If today is 25 September 2014, is 2 July 2014 in this quarter?
18 * const result = isThisQuarter(new Date(2014, 6, 2))
19 * //=> true
20 */
21export declare function isThisQuarter<DateType extends Date>(
22 date: DateType | number | string,
23): boolean;