UNPKG

@gouvfr-anct/lieux-de-mediation-numerique

Version:

📚 Bibliothèque pour la modélisation des lieux de médiation numérique respectant le standard du schéma de données des lieux de médiation numériques

8 lines (7 loc) • 496 B
import { CourrielError } from './errors'; const COURRIEL_REG_EXP = /^(?:[a-zA-Z0-9_][a-zA-Z0-9.!#$%&'*+\\=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9])+(?:;|$))+$/u; const throwCourrielError = (courriel) => { throw new CourrielError(courriel); }; export const isValidCourriel = (courriel) => COURRIEL_REG_EXP.test(courriel); export const Courriel = (courriel) => (isValidCourriel(courriel) ? courriel : throwCourrielError(courriel));