UNPKG

dom-validator

Version:

Validator similar to vee-validator for vuetify Applications

8 lines (7 loc) 177 B
export default (value, length) => { length = parseInt(length) if (value === undefined || value === null) { return false; } return String(value).length >= length; };