mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-03 23:01:25 -05: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/;
|