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) 160 B
export const ssn = (value) => { // Remove any whitespace value = value.trim(); const regex = /^[0-8]\d{2}-\d{2}-\d{4}$/; return regex.test(value); };