import {
  getFirstDateOfCurrentMonth,
  getFirstDateOfMonth,
  getLastDateOfCurrentMonth,
  getLastDateOfMonth,
  withFormat,
} from "../index";

console.log("getFirstDayOfCurrentMonth", getFirstDateOfCurrentMonth());
console.log("getLastDayOfCurrentMonth", getLastDateOfCurrentMonth());
console.log("getFirstDayOfMonth", getFirstDateOfMonth(1));
console.log("getLastDayOfMonth", getLastDateOfMonth(1));
console.log("withFormat", withFormat({ format: "YYYY-MM-DD" }));

// console.log(currentMonthCalendar, currentMonthCalendar.length);
/** Expected outputs.
[
    {
        month: 10,
        date: 30,
        day: { index: 0, text: 'Sunday' },
        isToday: false
    },
    ...
]
 */
