File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ added:
302302 - v12.17.0
303303changes:
304304 - version: REPLACEME
305- pr-url: https://github.com/nodejs/node/pull/00000
305+ pr-url: https://github.com/nodejs/node/pull/37136
306306 description: Runtime deprecated. Now moved to the detail property
307307 when entryType is 'gc'.
308308-->
@@ -337,7 +337,7 @@ The name of the performance entry.
337337added: v8.5.0
338338changes:
339339 - version: REPLACEME
340- pr-url: https://github.com/nodejs/node/pull/00000
340+ pr-url: https://github.com/nodejs/node/pull/37136
341341 description: Runtime deprecated. Now moved to the detail property
342342 when entryType is 'gc'.
343343-->
@@ -571,7 +571,7 @@ Disconnects the `PerformanceObserver` instance from all notifications.
571571added: v8.5.0
572572changes:
573573 - version: REPLACEME
574- pr-url: https://github.com/nodejs/node/pull/00000
574+ pr-url: https://github.com/nodejs/node/pull/37136
575575 description: Updated to conform to User Timing Level 3. The
576576 buffered option has been removed.
577577-->
Original file line number Diff line number Diff line change @@ -9,12 +9,12 @@ const {
99} = primordials ;
1010
1111const {
12- now,
1312 InternalPerformanceEntry,
13+ now,
1414} = require ( 'internal/perf/perf' ) ;
1515
1616const {
17- isConstructor
17+ isConstructor,
1818} = internalBinding ( 'util' ) ;
1919
2020const {
@@ -24,7 +24,7 @@ const {
2424} = require ( 'internal/errors' ) ;
2525
2626const {
27- enqueue
27+ enqueue,
2828} = require ( 'internal/perf/observe' ) ;
2929
3030const kTimerified = Symbol ( 'kTimerified' ) ;
Original file line number Diff line number Diff line change 11'use strict' ;
22
33const {
4- ObjectDefineProperty,
54 ObjectDefineProperties,
5+ ObjectDefineProperty,
66 ObjectSetPrototypeOf,
77 TypeError,
88} = primordials ;
@@ -13,8 +13,8 @@ const {
1313} = internalBinding ( 'performance' ) ;
1414
1515const {
16+ PerformanceEntry,
1617 now,
17- PerformanceEntry
1818} = require ( 'internal/perf/perf' ) ;
1919const { PerformanceObserver } = require ( 'internal/perf/observe' ) ;
2020
@@ -101,11 +101,11 @@ ObjectDefineProperties(Performance.prototype, {
101101} ) ;
102102
103103module . exports = {
104- performance : new InternalPerformance ( ) ,
105104 PerformanceEntry,
106105 PerformanceMark,
107106 PerformanceObserver,
108- monitorEventLoopDelay
107+ monitorEventLoopDelay,
108+ performance : new InternalPerformance ( ) ,
109109} ;
110110
111111ObjectDefineProperty ( module . exports , 'constants' , {
You can’t perform that action at this time.
0 commit comments