install gulp to process code
This commit is contained in:
parent
24f6606c2c
commit
b6a3900ee2
1651 changed files with 253427 additions and 39 deletions
19
node_modules/http-https/http-https.js
generated
vendored
Normal file
19
node_modules/http-https/http-https.js
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
var http = exports.http = require('http')
|
||||
var https = exports.https = require('https')
|
||||
var url = require('url')
|
||||
|
||||
exports.get = function(opt, cb) {
|
||||
return getMod(opt).get(opt, cb)
|
||||
}
|
||||
|
||||
exports.request = function(opt, cb) {
|
||||
return getMod(opt).request(opt, cb)
|
||||
}
|
||||
|
||||
exports.getModule = getMod
|
||||
function getMod(opt) {
|
||||
if (typeof opt === 'string')
|
||||
opt = url.parse(opt)
|
||||
|
||||
return opt.protocol === 'https:' ? https : http
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue