Skip to content

Commit

Permalink
Add uppercase and lowercase X to symbols (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
pp-ps authored Aug 30, 2021
1 parent b04e210 commit 8d7cd5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/random.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import * as randomstring from "randomstring";

/* printable 7 bit ASCII, some special char removed */
const RANDOM_CHARSET =
"ABCDEFGHIJKLMNOPQRSTUVWYZabcdefghijklmnopqrstuvwyz0123456789!#$%&()*+-/=?@";
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!#$%&()*+-/=?@";

export const StrongPassword = WithinRangeString(18, 19);
export type StrongPassword = t.TypeOf<typeof StrongPassword>;
Expand Down

0 comments on commit 8d7cd5d

Please sign in to comment.