Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/sindresorhus/is-absolute-url

Check if a URL is absolute
https://github.com/sindresorhus/is-absolute-url

Last synced: 9 days ago
JSON representation

Check if a URL is absolute

Lists

README

        

# is-absolute-url

> Check if a URL is absolute

## Install

```
$ npm install is-absolute-url
```

## Usage

```js
import isAbsoluteUrl from 'is-absolute-url';

isAbsoluteUrl('https://sindresorhus.com/foo/bar');
//=> true

isAbsoluteUrl('//sindresorhus.com');
//=> false

isAbsoluteUrl('foo/bar');
//=> false
```

## Related

See [is-relative-url](https://github.com/sindresorhus/is-relative-url) for the inverse.

---



Get professional support for this package with a Tidelift subscription




Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.