mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
9dbb1623ff
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>
51 lines
1.0 KiB
JavaScript
51 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
const {
|
|
ObjectDefineProperty,
|
|
} = primordials;
|
|
|
|
const {
|
|
constants,
|
|
} = internalBinding('performance');
|
|
|
|
const { PerformanceEntry } = require('internal/perf/performance_entry');
|
|
const { PerformanceResourceTiming } = require('internal/perf/resource_timing');
|
|
const {
|
|
PerformanceObserver,
|
|
PerformanceObserverEntryList,
|
|
} = require('internal/perf/observe');
|
|
const {
|
|
PerformanceMark,
|
|
PerformanceMeasure,
|
|
} = require('internal/perf/usertiming');
|
|
const {
|
|
Performance,
|
|
performance,
|
|
} = require('internal/perf/performance');
|
|
|
|
const {
|
|
createHistogram,
|
|
} = require('internal/histogram');
|
|
|
|
const monitorEventLoopDelay = require('internal/perf/event_loop_delay');
|
|
|
|
module.exports = {
|
|
Performance,
|
|
PerformanceEntry,
|
|
PerformanceMark,
|
|
PerformanceMeasure,
|
|
PerformanceObserver,
|
|
PerformanceObserverEntryList,
|
|
PerformanceResourceTiming,
|
|
monitorEventLoopDelay,
|
|
createHistogram,
|
|
performance,
|
|
};
|
|
|
|
ObjectDefineProperty(module.exports, 'constants', {
|
|
__proto__: null,
|
|
configurable: false,
|
|
enumerable: true,
|
|
value: constants,
|
|
});
|