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 (6 loc) 157 B
export const itin = (value) => { // Remove any whitespace value = value.trim(); const regex = /^9\d{2}-\d{2}-\d{4}$/; return regex.test(value); };