@pathmaker-digital/pmd-utilities - v2.2.6
    Preparing search index...

    Function isStrongPassword

    • Validates if the password is strong.

      Parameters

      • password: string

        The password to check.

      • minLength: number = 8

        The minimum password length. Defaults to 8.

      Returns boolean

      True if the password meets strength criteria, false otherwise.

      isStrongPassword("aB3$dEfG"); // true
      isStrongPassword("weakpass"); // false