1.0.2 • Published 5 years ago

prepend-www v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

prepend-www Travis (.org)

Prepend http://www. to URLs

Install

$ npm install prepend-www

or

$ yarn add prepend-www

Usage

const prependWWW = require('prepend-www');

prependWWW('http://demo.com');
//=> 'http://www.demo.com'

prependWWW('demo.com', {https: true});
//=> 'https://www.demo.com'

prependWWW('demo.com');
//=> 'http://www.demo.com'

prependWWW('localhost');
//=> 'http://www.localhost'

API

prependWWW(url, options)

url

Type: string

URL to prepend http://www. on.

options

Type: Object

https

Type: boolean Default: false

Prepend https://www. instead of http://www..

License

MIT © Jalal Azimi