-
-
Notifications
You must be signed in to change notification settings - Fork 0
#4 Test password strength
Axorax edited this page Apr 14, 2023
·
1 revision
const pass = new kith();
console.log(pass.test('abc'));output:
{
score: 20,
checks: {
length: false,
repeated: false,
symbols: false,
uppercase: false,
lowercase: true,
numbers: false
},
rejected: false
}