@progress/kendo-date-math
Version:
Kendo UI typescript package exporting functions for Date manipulations
16 lines (15 loc) • 490 B
JavaScript
import { createDate } from './create-date';
/**
* A function which returns the first date of the month.
*
* @param date - The initial date.
* @returns - The first date of the initial date month.
*
* @example
* ```ts-no-run
* firstDayOfMonth(new Date(2016, 0, 15)); // 2016-01-01
* ```
*/
export var firstDayOfMonth = function (date) {
return createDate(date.getFullYear(), date.getMonth(), 1, date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds());
};