diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-01-21 13:47:27 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-01-21 13:47:27 -0800 |
commit | b9574b995fb48219d8f4e1641f8730e10f2c9f3c (patch) | |
tree | 243a1a983413ace072e0ba053600e6554ec66c0a /lib/https.js | |
parent | db8736ad93231986b747e21131719fdacdf39a02 (diff) | |
download | node-new-b9574b995fb48219d8f4e1641f8730e10f2c9f3c.tar.gz |
Expose http.getAgent
Diffstat (limited to 'lib/https.js')
-rw-r--r-- | lib/https.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/https.js b/lib/https.js index aaa070a7aa..1b161e6a69 100644 --- a/lib/https.js +++ b/lib/https.js @@ -55,6 +55,7 @@ function getAgent(options) { return agent; } +exports.getAgent = getAgent; exports.request = function(options, cb) { |