XuelesszzZ 94af2b8e7b 6-30-5 | před 1 rokem | |
---|---|---|
.. | ||
index.js | před 1 rokem | |
license | před 1 rokem | |
package.json | před 1 rokem | |
readme.md | před 1 rokem |
Check if an URL is absolute
$ npm install --save is-absolute-url
var isAbsoluteUrl = require('is-absolute-url');
isAbsoluteUrl('http://sindresorhus.com/foo/bar');
//=> true
isAbsoluteUrl('//sindresorhus.com');
//=> false
isAbsoluteUrl('foo/bar');
//=> false
See is-relative-url for the inverse.
MIT © Sindre Sorhus