@@ -25,7 +25,7 @@ const {
2525NODE_PERFORMANCE_MILESTONE_LOOP_START ,
2626NODE_PERFORMANCE_MILESTONE_LOOP_EXIT ,
2727NODE_PERFORMANCE_MILESTONE_BOOTSTRAP_COMPLETE ,
28- NODE_PERFORMANCE_MILESTONE_ENVIRONMENT
28+ NODE_PERFORMANCE_MILESTONE_ENVIRONMENT ,
2929} ,
3030 loopIdleTime,
3131} = internalBinding ( 'performance' ) ;
@@ -37,28 +37,28 @@ class PerformanceNodeTiming {
3737__proto__ : null ,
3838enumerable : true ,
3939configurable : true ,
40- value : 'node'
40+ value : 'node' ,
4141} ,
4242
4343entryType : {
4444__proto__ : null ,
4545enumerable : true ,
4646configurable : true ,
47- value : 'node'
47+ value : 'node' ,
4848} ,
4949
5050startTime : {
5151__proto__ : null ,
5252enumerable : true ,
5353configurable : true ,
54- value : 0
54+ value : 0 ,
5555} ,
5656
5757duration : {
5858__proto__ : null ,
5959enumerable : true ,
6060configurable : true ,
61- get : now
61+ get : now ,
6262} ,
6363
6464nodeStart : {
@@ -67,7 +67,7 @@ class PerformanceNodeTiming {
6767configurable : true ,
6868get ( ) {
6969return getMilestoneTimestamp ( NODE_PERFORMANCE_MILESTONE_NODE_START ) ;
70- }
70+ } ,
7171} ,
7272
7373v8Start : {
@@ -76,7 +76,7 @@ class PerformanceNodeTiming {
7676configurable : true ,
7777get ( ) {
7878return getMilestoneTimestamp ( NODE_PERFORMANCE_MILESTONE_V8_START ) ;
79- }
79+ } ,
8080} ,
8181
8282environment : {
@@ -85,7 +85,7 @@ class PerformanceNodeTiming {
8585configurable : true ,
8686get ( ) {
8787return getMilestoneTimestamp ( NODE_PERFORMANCE_MILESTONE_ENVIRONMENT ) ;
88- }
88+ } ,
8989} ,
9090
9191loopStart : {
@@ -94,7 +94,7 @@ class PerformanceNodeTiming {
9494configurable : true ,
9595get ( ) {
9696return getMilestoneTimestamp ( NODE_PERFORMANCE_MILESTONE_LOOP_START ) ;
97- }
97+ } ,
9898} ,
9999
100100loopExit : {
@@ -103,7 +103,7 @@ class PerformanceNodeTiming {
103103configurable : true ,
104104get ( ) {
105105return getMilestoneTimestamp ( NODE_PERFORMANCE_MILESTONE_LOOP_EXIT ) ;
106- }
106+ } ,
107107} ,
108108
109109bootstrapComplete : {
@@ -113,15 +113,15 @@ class PerformanceNodeTiming {
113113get ( ) {
114114return getMilestoneTimestamp (
115115NODE_PERFORMANCE_MILESTONE_BOOTSTRAP_COMPLETE ) ;
116- }
116+ } ,
117117} ,
118118
119119idleTime : {
120120__proto__ : null ,
121121enumerable : true ,
122122configurable : true ,
123123get : loopIdleTime ,
124- }
124+ } ,
125125} ) ;
126126}
127127
@@ -130,7 +130,7 @@ class PerformanceNodeTiming {
130130
131131const opts = {
132132 ...options ,
133- depth : options . depth == null ? null : options . depth - 1
133+ depth : options . depth == null ? null : options . depth - 1 ,
134134} ;
135135
136136return `PerformanceNodeTiming ${ inspect ( this . toJSON ( ) , opts ) } ` ;
0 commit comments