UNPKG

629 BTypeScriptView Raw
1/**
2 * @name isThursday
3 * @category Weekday Helpers
4 * @summary Is the given date Thursday?
5 *
6 * @description
7 * Is the given date Thursday?
8 *
9 * @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).
10 *
11 * @param date - The date to check
12 *
13 * @returns The date is Thursday
14 *
15 * @example
16 * // Is 25 September 2014 Thursday?
17 * const result = isThursday(new Date(2014, 8, 25))
18 * //=> true
19 */
20export declare function isThursday<DateType extends Date>(
21 date: DateType | number | string,
22): boolean;