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

12 lines
236 B
JavaScript

/**
* Gives the last day of the previous month
*
* @param {Date} date
*
* @returns {Date}
*/
export function getLastDayPreviousMonth(date) {
const previous = new Date(date);
previous.setDate(0);
return new Date(previous);
}