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: 1 day ago
JSON representation
Check if a URL is absolute
- Host: GitHub
- URL: https://github.com/sindresorhus/is-absolute-url
- Owner: sindresorhus
- License: mit
- Created: 2014-06-29T19:18:55.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2021-08-11T14:21:09.000Z (over 3 years ago)
- Last Synced: 2025-01-10T20:14:22.491Z (9 days ago)
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 78
- Watchers: 7
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: license
- Security: .github/security.md
Awesome Lists containing this project
- awesome-github-star - is-absolute-url
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');
//=> trueisAbsoluteUrl('//sindresorhus.com');
//=> falseisAbsoluteUrl('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.