We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5592e49 commit d325fb4Copy full SHA for d325fb4
src/ts/ui-misc.ts
@@ -265,7 +265,7 @@ export module UIMisc {
265
generateCandidateFixed(pw: string, depth: number, originalPW: string): number {
266
// We keep a vector that tracks changes we make to the password for
267
// future highlighting purposes.
268
- var deltas = [];
+ var deltas: Array<number> = [];
269
// If this is the initial call, initialize that vector
270
if (typeof (this.deltaHighlighted[pw]) === "undefined") {
271
for (var i = 0; i < pw.length; i++) {
0 commit comments