From f9e269bfc2c6a5e9c6129537a35b7192b8ea3b4b Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 20 Oct 2016 12:32:37 -0600 Subject: [PATCH] typo fix --- ssl-root-cas.tpl.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ssl-root-cas.tpl.js b/ssl-root-cas.tpl.js index a06553c..c37b639 100644 --- a/ssl-root-cas.tpl.js +++ b/ssl-root-cas.tpl.js @@ -8,7 +8,8 @@ var originalCas = [ /*TPL*/ ]; -module.exports.rootCas = module.exports = originalCas.slice(0); +module.exports = originalCas.slice(0); // backwards compat +module.exports.rootCas = module.exports; module.exports.rootCas.inject = function (/*context*/) { var rootCas = this || module.exports.rootCas; var opts = /*context ||*/ require('https').globalAgent.options;