solorice/vscode/extensions/ritwickdey.liveserver-5.7.5/node_modules/prepend-http
2022-04-28 20:54:44 +03:00
..
index.js Added vscode settings 2022-04-28 20:54:44 +03:00
license Added vscode settings 2022-04-28 20:54:44 +03:00
package.json Added vscode settings 2022-04-28 20:54:44 +03:00
readme.md Added vscode settings 2022-04-28 20:54:44 +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