caverav / auditforge

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
1 occurrence in this check
Documentation comment not found for arrow function validatePassword
214    setAddModalPasswordRequiredAlert(false);
215  };
216
217  const validatePassword = (password: string): boolean => {218    const passwordRegex = /(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}/;
219    return passwordRegex.test(password);
220  };