registration
This commit is contained in:
17
frontend/style/node_modules/date-fns/setHours.js
generated
vendored
17
frontend/style/node_modules/date-fns/setHours.js
generated
vendored
@@ -1,6 +1,8 @@
|
||||
"use strict";
|
||||
exports.setHours = setHours;
|
||||
var _index = require("./toDate.js");
|
||||
import { toDate } from "./toDate.js";
|
||||
|
||||
/**
|
||||
* The {@link setHours} function options.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name setHours
|
||||
@@ -11,9 +13,11 @@ var _index = require("./toDate.js");
|
||||
* Set the hours to the given date.
|
||||
*
|
||||
* @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).
|
||||
* @typeParam ResultDate - The result `Date` type, it is the type returned from the context function if it is passed, or inferred from the arguments.
|
||||
*
|
||||
* @param date - The date to be changed
|
||||
* @param hours - The hours of the new date
|
||||
* @param options - An object with options
|
||||
*
|
||||
* @returns The new date with the hours set
|
||||
*
|
||||
@@ -22,8 +26,11 @@ var _index = require("./toDate.js");
|
||||
* const result = setHours(new Date(2014, 8, 1, 11, 30), 4)
|
||||
* //=> Mon Sep 01 2014 04:30:00
|
||||
*/
|
||||
function setHours(date, hours) {
|
||||
const _date = (0, _index.toDate)(date);
|
||||
export function setHours(date, hours, options) {
|
||||
const _date = toDate(date, options?.in);
|
||||
_date.setHours(hours);
|
||||
return _date;
|
||||
}
|
||||
|
||||
// Fallback for modularized imports:
|
||||
export default setHours;
|
||||
|
||||
Reference in New Issue
Block a user