Strip the authentication part of a URL
npm install strip-url-auth> Strip the authentication part of a URL
```
$ npm install strip-url-auth
`js
import stripUrlAuth from 'strip-url-auth';
stripUrlAuth('https://user:pass@sindresorhus.com');
//=> 'https://sindresorhus.com'
``