lyxaira.glass 74ca844f42 Actualizacion cambios generados: seccion #12, #14 y #15. | vor 4 Jahren | |
---|---|---|
.. | ||
index.js | vor 4 Jahren | |
license | vor 4 Jahren | |
package.json | vor 4 Jahren | |
readme.md | vor 4 Jahren |
Prepend
http://
to humanized URLs liketodomvc.com
andlocalhost
$ npm install prepend-http
const prependHttp = require('prepend-http');
prependHttp('todomvc.com');
//=> 'http://todomvc.com'
prependHttp('localhost');
//=> 'http://localhost'
prependHttp('http://todomvc.com');
//=> 'http://todomvc.com'
prependHttp('todomvc.com', {https: true});
//=> 'https://todomvc.com'
Type: string
URL to prepend http://
on.
Type: Object
Type: boolean
Default: false
Prepend https://
instead of http://
.
MIT © Sindre Sorhus