Skip to content

Commit

Permalink
miss
Browse files Browse the repository at this point in the history
  • Loading branch information
ogroppo committed Jul 5, 2024
1 parent 84bc16d commit c692b71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/random/randomPassword.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ export const randomPassword = ({
randomString({ length: 1 }).toUpperCase() + // Upper case
randomString({ length: randomInt({ min: minChars, max: maxChars }) - 3 }) + // At least 9 chars
randomArrayItem(SPECIAL_CHARACTERS) + // Special character
randomInt(1, 9); // Number
randomInt({ min: 1, max: 9 }); // Number

0 comments on commit c692b71

Please sign in to comment.