1.0.2 • Published 7 years ago
prepend-www v1.0.2
prepend-www 
Prepend http://www. to URLs
Install
$ npm install prepend-wwwor
$ yarn add prepend-wwwUsage
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