UNPKG

@progress/kendo-date-math

Version:

Kendo UI typescript package exporting functions for Date manipulations

20 lines (19 loc) 578 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var add_days_1 = require("./add-days"); /** * A function that adds and subtracts weeks from a Date object. * * @param date - The initial date value. * @param offset - The number of weeks to add/subtract from the date. * @returns - A new `Date` instance. * * @example * ```ts-no-run * addWeeks(new Date(2016, 5, 1), 3); // 2016-6-22 * addWeeks(new Date(2016, 5, 1), -3); // 2015-5-11 * ``` */ exports.addWeeks = function (date, offset) { return add_days_1.addDays(date, offset * 7); };