Skip to content

Commit 3c61b87

Browse files
committed
assert: improve assert()/assert.ok() performance
PR-URL: nodejs#19292 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 11b6c0d commit 3c61b87

File tree

2 files changed

+24
-6
lines changed

2 files changed

+24
-6
lines changed

benchmark/assert/ok.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
}

lib/assert.js

+4-6
Original file line numberDiff line numberDiff line change
@@ -206,13 +206,11 @@ function getErrMessage(call) {
206206
}
207207
}
208208

209-
function innerOk(args, fn) {
210-
var [value, message] = args;
211-
209+
function innerOk(fn, argLen, value, message) {
212210
if (!value) {
213211
let generatedMessage = false;
214212

215-
if (args.length === 0) {
213+
if (argLen === 0) {
216214
generatedMessage = true;
217215
message = 'No value argument passed to `assert.ok()`';
218216
} else if (message == null) {
@@ -253,7 +251,7 @@ function innerOk(args, fn) {
253251
// Pure assertion tests whether a value is truthy, as determined
254252
// by !!value.
255253
function ok(...args) {
256-
innerOk(args, ok);
254+
innerOk(ok, args.length, ...args);
257255
}
258256
assert.ok = ok;
259257

@@ -563,7 +561,7 @@ assert.ifError = function ifError(err) {
563561

564562
// Expose a strict only variant of assert
565563
function strict(...args) {
566-
innerOk(args, strict);
564+
innerOk(strict, args.length, ...args);
567565
}
568566
assert.strict = Object.assign(strict, assert, {
569567
equal: assert.strictEqual,

0 commit comments

Comments
 (0)