yanchengPowerSupply/node_modules/is-absolute-url
mazhehui 33e57c6f11 分布式光伏大屏页面 2023-07-18 08:47:30 +08:00
..
index.js 分布式光伏大屏页面 2023-07-18 08:47:30 +08:00
license 分布式光伏大屏页面 2023-07-18 08:47:30 +08:00
package.json 分布式光伏大屏页面 2023-07-18 08:47:30 +08:00
readme.md 分布式光伏大屏页面 2023-07-18 08:47:30 +08:00

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

See is-relative-url for the inverse.

License

MIT © Sindre Sorhus