UNPKG

@deposits/validators

Version:

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

6 lines (5 loc) 124 B
export const ein = (value) => { value = value.trim(); const pattern = /^\d{2}-\d{7}$/; return pattern.test(value); };