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