diff options
author | Ruben Bridgewater <ruben@bridgewater.de> | 2018-12-02 15:03:01 +0100 |
---|---|---|
committer | Anna Henningsen <anna@addaleax.net> | 2018-12-05 16:55:00 +0100 |
commit | 59257543c3db6f9ca01a91b75855934c2a913065 (patch) | |
tree | f2381b8db6f5d105a545d0452b4ec097c1810dba /lib/_http_agent.js | |
parent | dcc82b37b631d636e0fefc8272c357ec4a7d6df2 (diff) | |
download | node-new-59257543c3db6f9ca01a91b75855934c2a913065.tar.gz |
lib: use ES6 class inheritance style
PR-URL: https://github.com/nodejs/node/pull/24755
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'lib/_http_agent.js')
-rw-r--r-- | lib/_http_agent.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/_http_agent.js b/lib/_http_agent.js index c90955bf0e..ac482bcfea 100644 --- a/lib/_http_agent.js +++ b/lib/_http_agent.js @@ -106,6 +106,7 @@ function Agent(options) { }); } Object.setPrototypeOf(Agent.prototype, EventEmitter.prototype); +Object.setPrototypeOf(Agent, EventEmitter); Agent.defaultMaxSockets = Infinity; |