UNPKG

@lion/ui

Version:

A package of extendable web components

9 lines (8 loc) 143 B
/** * * @param {string} year * @returns {boolean} */ export function isCorrectYearFormat(year) { return /^\d{2}(\d{2})?$/g.test(year); }