xiebaomin 213d86429b updated hai 1 ano
..
index.js 213d86429b updated hai 1 ano
license 213d86429b updated hai 1 ano
package.json 213d86429b updated hai 1 ano
readme.md 213d86429b updated hai 1 ano

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