flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
36
BACK_BACK/node_modules/is-absolute-url/readme.md
generated
vendored
Executable file
36
BACK_BACK/node_modules/is-absolute-url/readme.md
generated
vendored
Executable file
|
|
@ -0,0 +1,36 @@
|
|||
# is-absolute-url [](https://travis-ci.org/sindresorhus/is-absolute-url)
|
||||
|
||||
> Check if an URL is absolute
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
$ npm install --save is-absolute-url
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
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](https://github.com/sindresorhus/is-relative-url) for the inverse.
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](http://sindresorhus.com)
|
||||
Loading…
Add table
Add a link
Reference in a new issue