UNPKG

dom-validator

Version:

Validator similar to vee-validator for vuetify Applications

6 lines (4 loc) 144 B
export default (value, [length]) => { const strVal = String(value); return /^[0-9]*$/.test(strVal) && strVal.length === Number(length); };