UNPKG

@deposits/validators

Version:

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

10 lines (7 loc) 132 B
export const oneWord = (value) => { if (!value) { return false; } const regex = /^\S*$/; return regex.test(value); };