UNPKG

dom-validator

Version:

Validator similar to vee-validator for vuetify Applications

11 lines (8 loc) 298 B
import { alphanumeric } from './alpha_helper'; export default (value, [locale] = [null]) => { // Match at least one locale. if (! locale) { return Object.keys(alphanumeric).some(loc => alphanumeric[loc].test(value)); } return (alphanumeric[locale] || alphanumeric.en).test(value); };