UNPKG

@rr0/time

Version:
12 lines (10 loc) 247 B
import { MinMaxValidator } from "../../calendar/index.mjs" export class MonthValidator extends MinMaxValidator { /** * @param {number} min * @param {number} max */ constructor (min = 1, max = 12) { super("month", min, max) } }