Check if a URL exists.
npm install url-existCheck if a URL exists.

``sh`
npm install url-exist
- Promise interface.
- Works cross-platform.
- Smaller install size.
- Typescript support included.
- Catches invalid URLs.
- Actively maintained.
`js
import urlExist from "url-exist"
await urlExist("https://google.com")
//=> true
await urlExist("https://google.com/404ingURL")
//=> false
await urlExist("notaurl")
//=> false
`
#### url
Type: string`
The URL to check.