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) 175 B
export const swiftCode = (value) => { // Remove any whitespace value = value.trim(); const regex = /^[A-Za-z0-9]{8}([A-Za-z0-9]{3})?$/; return regex.test(value); };