Skip to content

Commit efcbc06

Browse files
committed
Update formatting
1 parent 68e03c3 commit efcbc06

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages/auth/src/core/auth/password_policy_impl.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ export class PasswordPolicyImpl implements PasswordPolicyInternal {
122122
this.updatePasswordCharacterOptionsStasuses(
123123
status,
124124
/* containsLowercaseCharacter= */ false,
125-
/** containsUppercaseCharacter= */ false,
126-
/** containsNumericCharacter= */ false,
127-
/** containsNonAlphanumericCharacter= */ false
125+
/* containsUppercaseCharacter= */ false,
126+
/* containsNumericCharacter= */ false,
127+
/* containsNonAlphanumericCharacter= */ false
128128
);
129129

130130
let passwordChar;
@@ -134,11 +134,11 @@ export class PasswordPolicyImpl implements PasswordPolicyInternal {
134134
status,
135135
/* containsLowercaseCharacter= */ passwordChar >= 'a' &&
136136
passwordChar <= 'z',
137-
/** containsUppercaseCharacter= */ passwordChar >= 'A' &&
137+
/* containsUppercaseCharacter= */ passwordChar >= 'A' &&
138138
passwordChar <= 'Z',
139-
/** containsNumericCharacter= */ passwordChar >= '0' &&
139+
/* containsNumericCharacter= */ passwordChar >= '0' &&
140140
passwordChar <= '9',
141-
/** containsNonAlphanumericCharacter= */ this.allowedNonAlphanumericCharacters.includes(
141+
/* containsNonAlphanumericCharacter= */ this.allowedNonAlphanumericCharacters.includes(
142142
passwordChar
143143
)
144144
);

0 commit comments

Comments
 (0)