solorice/vscodium/extensions/ritwickdey.liveserver-5.7.5/node_modules/prepend-http
2022-04-28 21:17:01 +03:00
..
index.js Added vscodium 2022-04-28 21:17:01 +03:00
license Added vscodium 2022-04-28 21:17:01 +03:00
package.json Added vscodium 2022-04-28 21:17:01 +03:00
readme.md Added vscodium 2022-04-28 21:17:01 +03:00

prepend-http Build Status

Prepend http:// to humanized URLs like todomvc.com and localhost

Install

$ npm install --save prepend-http

Usage

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