Detailansicht verbessert
This commit is contained in:
31
express-server/node_modules/prepend-http/readme.md
generated
vendored
Normal file
31
express-server/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)
|
Reference in New Issue
Block a user