Skip to content

Commit

Permalink
chore(toolkit): update mobileUriSchemeProtocolRegEx
Browse files Browse the repository at this point in the history
  • Loading branch information
ImSingee committed May 10, 2024
1 parent dc0d577 commit 4e27dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/toolkit/core-kit/src/regex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const phoneRegEx = /^\d+$/;
export const phoneInputRegEx = /^\+?[\d-( )]+$/;
export const usernameRegEx = /^[A-Z_a-z]\w*$/;
export const webRedirectUriProtocolRegEx = /^https?:$/;
export const mobileUriSchemeProtocolRegEx = /^[a-z][\d+_a-z-]*(\.[\d+_a-z-]+)+:$/;
export const mobileUriSchemeProtocolRegEx = /^[\da-z][\d\.+_a-z-]*:$/;
export const hexColorRegEx = /^#[\da-f]{3}([\da-f]{3})?$/i;
export const dateRegex = /^\d{4}(-\d{2}){2}/;
export const noSpaceRegEx = /^\S+$/;
Expand Down

0 comments on commit 4e27dc1

Please sign in to comment.