shift73k/assets_old/node_modules/is-absolute-url
2022-08-13 07:32:36 -04:00
..
index.js progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
license progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
package.json progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
readme.md progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00

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

See is-relative-url for the inverse.

License

MIT © Sindre Sorhus