UNPKG

1.66 kBJavaScriptView Raw
1import { constructFrom } from "./constructFrom.js";
2import { getISOWeekYear } from "./getISOWeekYear.js";
3import { startOfISOWeek } from "./startOfISOWeek.js";
4
5/**
6 * The {@link endOfISOWeekYear} function options.
7 */
8
9/**
10 * @name endOfISOWeekYear
11 * @category ISO Week-Numbering Year Helpers
12 * @summary Return the end of an ISO week-numbering year for the given date.
13 *
14 * @description
15 * Return the end of an ISO week-numbering year,
16 * which always starts 3 days before the year's first Thursday.
17 * The result will be in the local timezone.
18 *
19 * ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date
20 *
21 * @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).
22 * @typeParam ContextDate - The `Date` type of the context function.
23 *
24 * @param date - The original date
25 * @param options - The options
26 *
27 * @returns The end of an ISO week-numbering year
28 *
29 * @example
30 * // The end of an ISO week-numbering year for 2 July 2005:
31 * const result = endOfISOWeekYear(new Date(2005, 6, 2))
32 * //=> Sun Jan 01 2006 23:59:59.999
33 */
34export function endOfISOWeekYear(date, options) {
35 const year = getISOWeekYear(date, options);
36 const fourthOfJanuaryOfNextYear = constructFrom(options?.in || date, 0);
37 fourthOfJanuaryOfNextYear.setFullYear(year + 1, 0, 4);
38 fourthOfJanuaryOfNextYear.setHours(0, 0, 0, 0);
39 const _date = startOfISOWeek(fourthOfJanuaryOfNextYear, options);
40 _date.setMilliseconds(_date.getMilliseconds() - 1);
41 return _date;
42}
43
44// Fallback for modularized imports:
45export default endOfISOWeekYear;