UNPKG

vuetify

Version:

Vue Material Component Framework

8 lines (6 loc) 315 B
import { DatePickerAllowedDatesFunction } from 'vuetify/types' export default function isDateAllowed (date: string, min: string, max: string, allowedFn: DatePickerAllowedDatesFunction | undefined) { return (!allowedFn || allowedFn(date)) && (!min || date >= min.substr(0, 10)) && (!max || date <= max) }