UNPKG

@virsas/vue-components

Version:

Virsas Vue3 and/or Quasar2 component library

10 lines (9 loc) 211 B
export const isGoodPassword = (val) => { return ( val.length >= 10 && /[a-z]/.test(val) && /[A-Z]/.test(val) && /[0-9]/.test(val) && /[!@#$%^&*()_+\-=[\]{};':"\\|,.<>/?]/.test(val) ); };