motion
Version:
motion - moving development forward
32 lines (18 loc) • 568 B
Markdown
# prepend-http [](https://travis-ci.org/sindresorhus/prepend-http)
> Prepend `http://` to humanized URLs like `todomvc.com` and `localhost`
## Install
```
$ npm install --save prepend-http
```
## Usage
```js
var 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](http://sindresorhus.com)