password-validator
password-validator copied to clipboard
Validates password according to flexible and intuitive specification
Improve JsDoc to support suggestions in VScode. Inspiration: #10 and #12.
Recursion exception is being thrown when a password with 28 characters long has been entered for validation. Here is a snippet from my code: `const pwordValidator = new passwordValidator();` `...
Hey, it's me again! :D I realised that the letters rule only checks for a very small amount of chars thus causing issues in our 14 language support product. Me,...
The library provides an API to maintain password validations easily and is objective in nature. However real life problems require subjectivity, like the problem of password strength is solved wonderfully...
Any thoughts on adding an `.or()` operation? I would like to specify something like: min 8, max 100 Use a capitol letter, a lower case letter, and a symbol OR...
Right now, there are two modes of using the library: - Return boolean on validations (returns false on first failed validation) - Return list of all failed validations (iterate through...
1. Added function overloads to improve the return type of the `verify` class method specifically. **Before**: > Used to return the same union type. Which required hacks like `as string[]`...