This repository has been archived on 2026-03-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
dsabot/node_modules/prepend-http
2020-03-25 11:05:34 +01:00
..
2020-03-25 11:05:34 +01:00
2020-03-25 11:05:34 +01:00
2020-03-25 11:05:34 +01:00
2020-03-25 11:05:34 +01: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