Mohammad Asif cf937194cb Removed un-waned things 1. | 6 ماه پیش | |
---|---|---|
.. | ||
index.d.ts | 6 ماه پیش | |
index.js | 6 ماه پیش | |
license | 6 ماه پیش | |
package.json | 6 ماه پیش | |
readme.md | 6 ماه پیش |
Check if a URL is absolute
$ npm install is-absolute-url
const isAbsoluteUrl = require('is-absolute-url');
isAbsoluteUrl('https://sindresorhus.com/foo/bar');
//=> true
isAbsoluteUrl('//sindresorhus.com');
//=> false
isAbsoluteUrl('foo/bar');
//=> false
See is-relative-url for the inverse.