@progress/kendo-date-math
Version:
Kendo UI typescript package exporting functions for Date manipulations
25 lines (24 loc) • 795 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.addDays = void 0;
var adjust_dst_1 = require("./adjust-dst");
var clone_date_1 = require("./clone-date");
/**
* A function that adds and subtracts days from a `Date` object.
*
* @param date - The initial date value.
* @param offset - The number of days to add and subtract from the date.
* @returns - A new `Date` instance.
*
* @example
* ```ts-no-run
* addDays(new Date(2016, 0, 1), 5); // 2016-1-6
* addDays(new Date(2016, 0, 1), -5); // 2015-12-26
* ```
*/
var addDays = function (date, offset) {
var newDate = (0, clone_date_1.cloneDate)(date);
newDate.setDate(newDate.getDate() + offset);
return (0, adjust_dst_1.adjustDST)(newDate, date.getHours());
};
exports.addDays = addDays;