UNPKG

dom-validator

Version:

Validator similar to vee-validator for vuetify Applications

8 lines (6 loc) 173 B
export default (value, [regex, ...flags]) => { if (regex instanceof RegExp) { return regex.test(value); } return new RegExp(regex, flags).test(String(value)); };