File tree 2 files changed +24
-6
lines changed
2 files changed +24
-6
lines changed Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ const common = require ( '../common.js' ) ;
4
+ const assert = require ( 'assert' ) ;
5
+
6
+ const bench = common . createBenchmark ( main , {
7
+ n : [ 1e9 ]
8
+ } ) ;
9
+
10
+ function main ( { n } ) {
11
+ var i ;
12
+ bench . start ( ) ;
13
+ for ( i = 0 ; i < n ; ++ i ) {
14
+ if ( i % 2 === 0 )
15
+ assert ( true ) ;
16
+ else
17
+ assert ( true , 'foo bar baz' ) ;
18
+ }
19
+ bench . end ( n ) ;
20
+ }
Original file line number Diff line number Diff line change @@ -206,13 +206,11 @@ function getErrMessage(call) {
206
206
}
207
207
}
208
208
209
- function innerOk ( args , fn ) {
210
- var [ value , message ] = args ;
211
-
209
+ function innerOk ( fn , argLen , value , message ) {
212
210
if ( ! value ) {
213
211
let generatedMessage = false ;
214
212
215
- if ( args . length === 0 ) {
213
+ if ( argLen === 0 ) {
216
214
generatedMessage = true ;
217
215
message = 'No value argument passed to `assert.ok()`' ;
218
216
} else if ( message == null ) {
@@ -253,7 +251,7 @@ function innerOk(args, fn) {
253
251
// Pure assertion tests whether a value is truthy, as determined
254
252
// by !!value.
255
253
function ok ( ...args ) {
256
- innerOk ( args , ok ) ;
254
+ innerOk ( ok , args . length , ... args ) ;
257
255
}
258
256
assert . ok = ok ;
259
257
@@ -563,7 +561,7 @@ assert.ifError = function ifError(err) {
563
561
564
562
// Expose a strict only variant of assert
565
563
function strict ( ...args ) {
566
- innerOk ( args , strict ) ;
564
+ innerOk ( strict , args . length , ... args ) ;
567
565
}
568
566
assert . strict = Object . assign ( strict , assert , {
569
567
equal : assert . strictEqual ,
You can’t perform that action at this time.
0 commit comments