mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-25 23:02:05 -04:00
7 lines
280 B
JavaScript
7 lines
280 B
JavaScript
// These regex are not for validation, it is purely to see
|
|
// if we are looking at something like what we want to validate
|
|
// before we try to validate
|
|
export const maybeEmailRE = /.*@.*\.\w\w/;
|
|
export const maybeUrlRE = /https?:\/\/.*\..*/;
|
|
export const hasProtocolRE = /^http/;
|