npm install normalize-ssh> Normalize a SSH URL
 
```
npm i -S normalize-ssh
`js
const normalizeSshUrl = require('normalize-ssh')
normalizeSshUrl('git@gitlab.domain.tld:myproject/myrepo.git')
//> ssh://git@gitlab.domain.tld:22/myproject/myrepo.git
``