Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « jobs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28a125b2b8f5f5d780f8ec0b0c8138b30f97a223 (plain)
1
2
3
4
// capture anything starting with http:// or https://
// up until a disallowed character or whitespace
export const linkRegex = /(https?:\/\/[^"<>\\^`{|}\s]+)/g;
export default { linkRegex };