Package Exports
- is-relative-url
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-relative-url) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-relative-url 
Check if an URL is relative
Install
$ npm install --save is-relative-url
Usage
const isRelativeUrl = require('is-relative-url');
isRelativeUrl('foo/bar');
//=> true
isRelativeUrl('http://sindresorhus.com/foo/bar');
//=> false
isRelativeUrl('//sindresorhus.com');
//=> true
Related
See is-absolute-url for the inverse.
License
MIT © Sindre Sorhus