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

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

export default { blobLinkRegex };