UNPKG

@naturalcycles/js-lib

Version:

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

7 lines (6 loc) 188 B
/** * Simple, intentionally not exhaustive regex to match an email address. * * Source: https://regexr.com/3e48o */ export const SIMPLE_EMAIL_REGEX = /^[\w-.]+@([\w-]+\.)+[\w-]{2,4}$/