Home > Blockchain >  how to change Validator isStrongPassword requirements
how to change Validator isStrongPassword requirements

Time:09-23

I want to change the requirements of Validator isStrongPassword instead of these Default options:

{ minLength: 8, minLowercase: 1, minUppercase: 1, 
minNumbers: 1, minSymbols: 1, returnScore: false, 
pointsPerUnique: 1, pointsPerRepeat: 0.5, 
pointsForContainingLower: 10, pointsForContainingUpper: 10, 
pointsForContainingNumber: 10, pointsForContainingSymbol: 10 }

I need to make it without minSymbols: is there a way to change these conditions ?

CodePudding user response:

Did you try using isStrongPassword(str [, options]) and for minSymbols just set value 0. Options are this object that you posted.

  • Related