UNPKG

dom-validator

Version:

Validator similar to vee-validator for vuetify Applications

9 lines (7 loc) 184 B
export default (value, length) => { length = parseInt(length) if (value === undefined || value === null) { return length >= 0; } return String(value).length <= length; };