lion/packages/calendar/src/utils/getFirstDayNextMonth.js
2020-10-06 12:41:03 +02:00

13 lines
254 B
JavaScript

/**
* Gives the first day of the next month
*
* @param {Date} date
*
* @returns {Date}
*/
export function getFirstDayNextMonth(date) {
const result = new Date(date);
result.setDate(1);
result.setMonth(date.getMonth() + 1);
return result;
}