UNPKG

@naturalcycles/js-lib

Version:

Standard library for universal (browser + Node.js) javascript

10 lines (9 loc) 298 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SIMPLE_EMAIL_REGEX = void 0; /** * Simple, intentionally not exhaustive regex to match an email address. * * Source: https://regexr.com/3e48o */ exports.SIMPLE_EMAIL_REGEX = /^[\w-.]+@([\w-]+\.)+[\w-]{2,4}$/;