UNPKG

@janiscommerce/app-dates

Version:
10 lines (7 loc) 284 B
import { isToday as isTodayDate } from 'date-fns'; /** * The function `isToday` checks if a given date is today's date. * @param {Date} date - The `date` parameter is a variable that represents a specific date. * @return {boolean} */ export default (date) => isTodayDate(date);