1.0.0 • Published 6 years ago

gitlab-url-parse v1.0.0

Weekly downloads
30
License
MIT
Repository
github
Last release
6 years ago

gitlab-url-parse

npm version Build Status

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 }