We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7147e7 commit 2f61cb3Copy full SHA for 2f61cb3
benchmark/stacks.js
@@ -31,4 +31,4 @@ ptime.setTime('parraystack100000');
31
for(let i = 0; i < 100000; i++) {
32
stack.pop()
33
}
34
-console.log("Pop Array 100,000 Stack timing:", ptime.elapsedTime('parraystack100000').formatted);
+console.log("Pop 100,000 Array Stack timing:", ptime.elapsedTime('parraystack100000').formatted);
package.json
@@ -9,6 +9,7 @@
9
"private": false,
10
"scripts": {
11
"test": "npx mocha",
12
+ "bench:all": "node benchmark/stacks.js && node benchmark/queues.js",
13
"bench:stacks": "node benchmark/stacks.js",
14
"bench:queues": "node benchmark/queues.js"
15
},
0 commit comments