Parse Gitlab urls
$ npm install gitlab-url-parse
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 }