gitlab-org--gitlab-foss/app/assets/javascripts/jobs/utils.js

5 lines
192 B
JavaScript

// capture anything starting with http:// or https://
// up until a disallowed character or whitespace
export const linkRegex = /(https?:\/\/[^"<>\\^`{|}\s]+)/g;
export default { linkRegex };