AzuraCast/frontend/vue/functions/validatePassword.js

8 lines
215 B
JavaScript

import {helpers} from '@vuelidate/validators';
import zxcvbn from "zxcvbn";
export default function validatePassword(value) {
const result = zxcvbn(value);
return !helpers.req(value) || result.score > 2;
}