Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions benchmark/internal/util_isinsidenodemodules.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
'use strict';
const common = require('../common.js');
const assert = require('assert');

const bench = common.createBenchmark(main, {
n: [1e6],
stackLimit: [100],
stackCount: [99, 101],
method: ['isInsideNodeModules', 'noop'],
}, {
flags: ['--expose-internals', '--disable-warning=internal/test/binding'],
});

function main({ n, stackLimit, stackCount, method }) {
const { internalBinding } = require('internal/test/binding');
const { isInsideNodeModules } = internalBinding('util');

const testFunction = method === 'noop' ?
() => {
bench.start();
for (let i = 0; i < n; i++) {
noop();
}
bench.end(n);
} :
() => {
Error.stackTraceLimit = Infinity;
const existingStackFrameCount = new Error().stack.split('\n').length - 1;
assert.strictEqual(existingStackFrameCount, stackCount);

bench.start();
for (let i = 0; i < n; i++) {
isInsideNodeModules(stackLimit, true);
}
bench.end(n);
};

// Excluding the message line.
const existingStackFrameCount = new Error().stack.split('\n').length - 1;
// Excluding the test function itself.
nestCallStack(stackCount - existingStackFrameCount - 1, testFunction);
}

function nestCallStack(depth, callback) {
// nestCallStack(1) already adds a stack frame, so we stop at 1.
if (depth === 1) {
return callback();
}
return nestCallStack(depth - 1, callback);
}

function noop() {}
Loading