Skip to content

Commit

Permalink
fix(constants): domain regex accepting invalid domains
Browse files Browse the repository at this point in the history
Change the domain regex to match the whole string.
Before, the regex would accept a string if it contained a valid domain at any point.
  • Loading branch information
gnarlex committed Feb 20, 2021
1 parent 30ebf7b commit 39faf87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const POSTGRESQL_DATE_FORMATS = {
year: 'YYYY-01-01',
};

export const DOMAIN_REGEX = /localhost(:\d{1,5})?|((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,63}/;
export const DOMAIN_REGEX = /^localhost(:\d{1,5})?|((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,63}$/;

export const DESKTOP_SCREEN_WIDTH = 1920;
export const LAPTOP_SCREEN_WIDTH = 1024;
Expand Down

0 comments on commit 39faf87

Please sign in to comment.