@@ -66,7 +66,7 @@ const mappedDuration = Date.now() - mappedStart;
6666const mappedThroughput = Math . round ( 100000 / ( mappedDuration / 1000 ) ) ;
6767
6868console . log ( ` Test IPs: ${ mappedIPs . length } different formats` ) ;
69- console . log ( ` Iterations: 100,000` ) ;
69+ console . log ( ' Iterations: 100,000' ) ;
7070console . log ( ` Duration: ${ mappedDuration } ms` ) ;
7171console . log ( ` Throughput: ${ mappedThroughput . toLocaleString ( ) } ops/sec` ) ;
7272
@@ -94,7 +94,7 @@ for (let i = 0; i < 1000000; i++) {
9494const ntoaDuration = Date . now ( ) - ntoaStart ;
9595const ntoaThroughput = Math . round ( 1000000 / ( ntoaDuration / 1000 ) ) ;
9696
97- console . log ( ` Iterations: 1,000,000` ) ;
97+ console . log ( ' Iterations: 1,000,000' ) ;
9898console . log ( ` Duration: ${ ntoaDuration } ms` ) ;
9999console . log ( ` Throughput: ${ ntoaThroughput . toLocaleString ( ) } ops/sec` ) ;
100100console . log ( ` Per call: ${ ( ntoaDuration / 1000000 * 1000 ) . toFixed ( 4 ) } ms` ) ;
@@ -183,7 +183,7 @@ for (let i = 0; i < 100000; i++) {
183183const privateDuration = Date . now ( ) - privateStart ;
184184const privateThroughput = Math . round ( 100000 / ( privateDuration / 1000 ) ) ;
185185
186- console . log ( ` Iterations: 100,000` ) ;
186+ console . log ( ' Iterations: 100,000' ) ;
187187console . log ( ` Duration: ${ privateDuration } ms` ) ;
188188console . log ( ` Throughput: ${ privateThroughput . toLocaleString ( ) } ops/sec` ) ;
189189
0 commit comments