Check if a string is a URL
npm install is-url-superb> Check if a string is a URL
```
$ npm install is-url-superb
`js
import isUrl from 'is-url-superb';
isUrl('https://sindresorhus.com');
//=> true
isUrl('unicorn');
//=> false
`
#### options
Type: object
##### lenient
Type: boolean\false
Default:
Allow URLs without a protocol.
`js
import isUrl from 'is-url-superb';
isUrl('example.com');
//=> false
isUrl('example.com', {lenient: true});
//=> true
``
- is - Type check values