htc 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 місяців тому
..
index.js 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 місяців тому
license 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 місяців тому
package.json 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 місяців тому
readme.md 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 місяців тому

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