SafetyScreen-ui/node_modules/prepend-http
haozq 723f80cdec first commit 2025-03-29 19:33:58 +08:00
..
index.js first commit 2025-03-29 19:33:58 +08:00
license first commit 2025-03-29 19:33:58 +08:00
package.json first commit 2025-03-29 19:33:58 +08:00
readme.md first commit 2025-03-29 19:33:58 +08:00

readme.md

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