Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
7
VApp/node_modules/vuetify/lib/components/VDatePicker/util/isDateAllowed.mjs
generated
vendored
Normal file
7
VApp/node_modules/vuetify/lib/components/VDatePicker/util/isDateAllowed.mjs
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
// @ts-nocheck
|
||||
/* eslint-disable */
|
||||
|
||||
export default function isDateAllowed(date, min, max, allowedFn) {
|
||||
return (!allowedFn || allowedFn(date)) && (!min || date >= min.substr(0, 10)) && (!max || date <= max);
|
||||
}
|
||||
//# sourceMappingURL=isDateAllowed.mjs.map
|
||||
Reference in New Issue
Block a user