added updated file (was correctly uploaded to npm)

This commit is contained in:
AJ ONeal 2014-03-07 19:03:35 -07:00
parent 61afee5f7b
commit 79f26ce66a
1 changed files with 3 additions and 2 deletions

View File

@ -4094,5 +4094,6 @@ var cas = module.exports = [
"3mB/ufNPRJLvKrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed\n" +
"-----END CERTIFICATE-----\n"
];
var opts = require('https').globalAgent.options;
if (!opts.ca || opts.ca.length < 100) { opts.ca = (opts.ca||[]).concat(cas); }
module.exports.inject = function () {
var opts = require('https').globalAgent.options;
if (!opts.ca || opts.ca.length < 100) { opts.ca = (opts.ca||[]).concat(cas); }};