gitlab-url-parse
v1.0.0
Published
Parse Gitlab urls
Downloads
29
Readme
gitlab-url-parse
Parse Gitlab urls
Install
$ npm install gitlab-url-parse
Usage
const parse = require('gitlab-url-parse')
console.log(parse('https://gitlab.com/herrmannplatz'))
// { user: 'herrmannplatz' }
console.log(parse('https://gitlab.com/herrmannplatz/gitlab-url-parse'))
// { user: 'herrmannplatz', project: 'gitlab-url-parse' }
console.log(parse('https://gitlab.com/herrmannplatz/gitlab-url-parse/merge_requests/1'))
// { user: 'herrmannplatz', project: 'gitlab-url-parse', mr: 1 }