UNPKG

@deposits/validators

Version:

A collection of Fintech-specific and general-purpose validators, designed to extend popular validation libraries like Vuelidate, Zod, and yup.

9 lines (8 loc) 261 B
export const email = (value) => { if (value.length > 63) { return false; } const regex = /^[A-Za-z0-9]+(\.[A-Za-z0-9]+)*@[a-zA-Z]([a-zA-Z0-9\-]*[a-zA-Z0-9])*(\.[a-zA-Z]([a-zA-Z0-9\-]*[a-zA-Z0-9])*)*\.([a-zA-Z]+)*$/; return regex.test(value); };