19 lines
623 B
JavaScript
19 lines
623 B
JavaScript
import {
|
|
performance,
|
|
Performance,
|
|
PerformanceEntry,
|
|
PerformanceMark,
|
|
PerformanceMeasure,
|
|
PerformanceObserver,
|
|
PerformanceObserverEntryList,
|
|
PerformanceResourceTiming
|
|
} from "node:perf_hooks";
|
|
globalThis.performance = performance;
|
|
globalThis.Performance = Performance;
|
|
globalThis.PerformanceEntry = PerformanceEntry;
|
|
globalThis.PerformanceMark = PerformanceMark;
|
|
globalThis.PerformanceMeasure = PerformanceMeasure;
|
|
globalThis.PerformanceObserver = PerformanceObserver;
|
|
globalThis.PerformanceObserverEntryList = PerformanceObserverEntryList;
|
|
globalThis.PerformanceResourceTiming = PerformanceResourceTiming;
|