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 ?