Repository URL to install this package:
|
Version:
3.4.0 ▾
|
declare function isValidPassword(value?: string): boolean;
declare function toStrengthName(originalStrength?: number): string;
/**
* @todo - move to best module later
* @see toStrengthName
*
* @return configurable wording for strength at a certain Weight
*/
declare function toStrength(validPassword: string): string;
export { toStrength };
export { toStrengthName };
export { isValidPassword };
export default isValidPassword;