Commit project
This commit is contained in:
parent
28471965a0
commit
3ac017a5ad
1030 changed files with 94062 additions and 0 deletions
31
node_modules/prepend-http/readme.md
generated
vendored
Normal file
31
node_modules/prepend-http/readme.md
generated
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
# prepend-http [](https://travis-ci.org/sindresorhus/prepend-http)
|
||||
|
||||
> Prepend `http://` to humanized URLs like `todomvc.com` and `localhost`
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save prepend-http
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const prependHttp = require('prepend-http');
|
||||
|
||||
prependHttp('todomvc.com');
|
||||
//=> 'http://todomvc.com'
|
||||
|
||||
prependHttp('localhost');
|
||||
//=> 'http://localhost'
|
||||
|
||||
prependHttp('http://todomvc.com');
|
||||
//=> 'http://todomvc.com'
|
||||
```
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](https://sindresorhus.com)
|
Loading…
Add table
Add a link
Reference in a new issue