yrik 0fb20a58e3 提交 4 yıl önce
..
index.js eec7f449c9 first commit 4 yıl önce
license eec7f449c9 first commit 4 yıl önce
package.json 0fb20a58e3 提交 4 yıl önce
readme.md eec7f449c9 first commit 4 yıl önce

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