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 (7 loc) 176 B
export const name = (value) => { if (value.length > 40 || value.length < 2) { return false; } const regex = /^[a-zA-Z0-9'.&,\-\s]*$/; return regex.test(value); };