UNPKG

825 BJavaScriptView Raw
1"use strict";
2exports.setHours = setHours;
3var _index = require("./toDate.js");
4
5/**
6 * @name setHours
7 * @category Hour Helpers
8 * @summary Set the hours to the given date.
9 *
10 * @description
11 * Set the hours 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 hours - The hours of the new date
17 *
18 * @returns The new date with the hours set
19 *
20 * @example
21 * // Set 4 hours to 1 September 2014 11:30:00:
22 * const result = setHours(new Date(2014, 8, 1, 11, 30), 4)
23 * //=> Mon Sep 01 2014 04:30:00
24 */
25function setHours(date, hours) {
26 const _date = (0, _index.toDate)(date);
27 _date.setHours(hours);
28 return _date;
29}