mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
lib: add trailing commas to all public core modules
PR-URL: https://github.com/nodejs/node/pull/46848 Reviewed-By: Debadree Chatterjee <debadree333@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
This commit is contained in:
@@ -148,7 +148,7 @@ function createConnection(port, host, options) {
|
||||
debug('reuse session for %j', options._agentKey);
|
||||
options = {
|
||||
session,
|
||||
...options
|
||||
...options,
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -199,7 +199,7 @@ function Agent(options) {
|
||||
|
||||
this._sessionCache = {
|
||||
map: {},
|
||||
list: []
|
||||
list: [],
|
||||
};
|
||||
}
|
||||
ObjectSetPrototypeOf(Agent.prototype, HttpAgent.prototype);
|
||||
@@ -408,5 +408,5 @@ module.exports = {
|
||||
Server,
|
||||
createServer,
|
||||
get,
|
||||
request
|
||||
request,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user