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:
Antoine du Hamel 2023-02-12 19:26:21 +01:00
parent 1101713cc2
commit 9dbb1623ff
No known key found for this signature in database
GPG key ID: 21D900FFDB233756
30 changed files with 212 additions and 243 deletions

View file

@ -24,7 +24,7 @@ const {
} = require('internal/perf/performance');
const {
createHistogram
createHistogram,
} = require('internal/histogram');
const monitorEventLoopDelay = require('internal/perf/event_loop_delay');
@ -46,5 +46,5 @@ ObjectDefineProperty(module.exports, 'constants', {
__proto__: null,
configurable: false,
enumerable: true,
value: constants
value: constants,
});