UNPKG

dom-validator

Version:

Validator similar to vee-validator for vuetify Applications

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