Fix compile errors in checkPassword's entropy check

This commit is contained in:
Madeline 2022-04-11 00:36:12 +10:00 committed by Erkin Alp Güney
parent 6b57c358fc
commit 12aed1db1f

View File

@ -46,15 +46,15 @@ export function checkPassword(password: string): number {
strength = 0;
}
let entropyMap;
let entropyMap: { [key: string]: number } = {};
for (let i = 0; i < password.length; i++) {
if (entropyMap[password[i]]) entropyMap[password[i]]++;
else entropyMap[password[i]] = 1;
}
let entropies = Array(entropyMap);
let entropies = Object.values(entropyMap);
entropies.map(x => (x / entropyMap.length));
strength += entropies.reduceRight((a, x), a - (x * Math.log2(x))) / Math.log2(password.length);
strength += entropies.reduceRight((a: number, x: number) => a - (x * Math.log2(x))) / Math.log2(password.length);
return strength;
}