zhang song fec5680ad9 'prod' 6 лет назад
..
index.js fec5680ad9 'prod' 6 лет назад
license fec5680ad9 'prod' 6 лет назад
package.json fec5680ad9 'prod' 6 лет назад
readme.md fec5680ad9 'prod' 6 лет назад

readme.md

is-absolute-url Build Status

Check if an URL is absolute

Install

$ npm install --save is-absolute-url

Usage

var isAbsoluteUrl = require('is-absolute-url');

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

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

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

Related

See is-relative-url for the inverse.

License

MIT © Sindre Sorhus