@progress/kendo-date-math
Version:
Kendo UI typescript package exporting functions for Date manipulations
16 lines (15 loc) • 597 B
JavaScript
import { firstYearOfDecade } from './first-year-of-decade';
/**
* A function that calculates duration in decades between two `Date` objects.
*
* @param start - The start date value.
* @param end - The end date value.
* @returns - The duration in months.
*
* @example
* ```ts-no-run
* durationInDecades(new Date(2016, 0, 1), new Date(2136, 0, 1)); // 12
* durationInDecades(new Date(2016, 0, 1), new Date(2016, 0, 1)); // 0
* ```
*/
export var durationInDecades = function (start, end) { return ((firstYearOfDecade(end).getFullYear() - firstYearOfDecade(start).getFullYear()) / 10); };