UNPKG

@virsas/vue-components

Version:

Virsas Vue3 and/or Quasar2 component library

8 lines (7 loc) 151 B
export const isValidLength = (val, min, max) => { if (val.length >= min && val.length <= max) { return true; } else { return false; } };