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

13 lines (12 loc) • 702 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Courriel = exports.isValidCourriel = void 0; const errors_1 = require("./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 errors_1.CourrielError(courriel); }; const isValidCourriel = (courriel) => COURRIEL_REG_EXP.test(courriel); exports.isValidCourriel = isValidCourriel; const Courriel = (courriel) => ((0, exports.isValidCourriel)(courriel) ? courriel : throwCourrielError(courriel)); exports.Courriel = Courriel;