-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathindex.js
49 lines (34 loc) · 852 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* @overview
* @author Matthew Caruana Galizia <[email protected]>
* @license MIT
* @copyright Copyright (c) 2013, Matthew Caruana Galizia
*/
'use strict';
/*jshint node:true*/
var https = require('https');
var url = require('url');
var Agent = require('./lib/Agent');
exports.request = function(options, cb) {
var agent, version;
if (typeof options === 'string') {
options = url.parse(options);
}
options.protocol = 'https:';
// Node v0.12.0 requires the port to be specified.
if (!options.port && options.host) {
options.port = options.host.split(':')[1];
}
if (!options.port) {
options.port = 443;
}
agent = new Agent(options);
options.agent = agent;
return https.request(options, cb);
};
exports.Agent = Agent;
exports.get = function(options, cb) {
var req = exports.request(options, cb);
req.end();
return req;
};