xiaofu-ruoyi-vue/node_modules/prepend-http
ffr b5131258d8 第一次提交 2024-04-23 08:05:40 +08:00
..
index.js 第一次提交 2024-04-23 08:05:40 +08:00
license 第一次提交 2024-04-23 08:05:40 +08:00
package.json 第一次提交 2024-04-22 22:43:17 +08:00
readme.md 第一次提交 2024-04-23 08:05:40 +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