|
лет назад: 3 | |
---|---|---|
.. | ||
index.d.ts | лет назад: 3 | |
index.js | лет назад: 3 | |
license | лет назад: 3 | |
package.json | лет назад: 3 | |
readme.md | лет назад: 3 |
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.