File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
packages/auth/src/core/auth Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -122,9 +122,9 @@ export class PasswordPolicyImpl implements PasswordPolicyInternal {
122
122
this . updatePasswordCharacterOptionsStasuses (
123
123
status ,
124
124
/* containsLowercaseCharacter= */ false ,
125
- /** containsUppercaseCharacter= */ false ,
126
- /** containsNumericCharacter= */ false ,
127
- /** containsNonAlphanumericCharacter= */ false
125
+ /* containsUppercaseCharacter= */ false ,
126
+ /* containsNumericCharacter= */ false ,
127
+ /* containsNonAlphanumericCharacter= */ false
128
128
) ;
129
129
130
130
let passwordChar ;
@@ -134,11 +134,11 @@ export class PasswordPolicyImpl implements PasswordPolicyInternal {
134
134
status ,
135
135
/* containsLowercaseCharacter= */ passwordChar >= 'a' &&
136
136
passwordChar <= 'z' ,
137
- /** containsUppercaseCharacter= */ passwordChar >= 'A' &&
137
+ /* containsUppercaseCharacter= */ passwordChar >= 'A' &&
138
138
passwordChar <= 'Z' ,
139
- /** containsNumericCharacter= */ passwordChar >= '0' &&
139
+ /* containsNumericCharacter= */ passwordChar >= '0' &&
140
140
passwordChar <= '9' ,
141
- /** containsNonAlphanumericCharacter= */ this . allowedNonAlphanumericCharacters . includes (
141
+ /* containsNonAlphanumericCharacter= */ this . allowedNonAlphanumericCharacters . includes (
142
142
passwordChar
143
143
)
144
144
) ;
You can’t perform that action at this time.
0 commit comments