UNPKG

910 BJavaScriptView Raw
1"use strict";
2exports.setDayOfYear = setDayOfYear;
3var _index = require("./toDate.js");
4
5/**
6 * @name setDayOfYear
7 * @category Day Helpers
8 * @summary Set the day of the year to the given date.
9 *
10 * @description
11 * Set the day of the year to the given date.
12 *
13 * @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).
14 *
15 * @param date - The date to be changed
16 * @param dayOfYear - The day of the year of the new date
17 *
18 * @returns The new date with the day of the year set
19 *
20 * @example
21 * // Set the 2nd day of the year to 2 July 2014:
22 * const result = setDayOfYear(new Date(2014, 6, 2), 2)
23 * //=> Thu Jan 02 2014 00:00:00
24 */
25function setDayOfYear(date, dayOfYear) {
26 const _date = (0, _index.toDate)(date);
27 _date.setMonth(0);
28 _date.setDate(dayOfYear);
29 return _date;
30}