# is-url-superb

> Check if a string is a URL

## Install

```
$ npm install is-url-superb
```

## Usage

```js
const isUrl = require('is-url-superb');

isUrl('https://sindresorhus.com');
//=> true

isUrl('unicorn');
//=> false
```

## Related

- [is](https://github.com/sindresorhus/is) - Type check values
