mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
653 B
37 lines
653 B
'use strict';
|
|
var common = require('../common.js');
|
|
var assert = require('assert');
|
|
var bench = common.createBenchmark(main, {
|
|
prim: [
|
|
null,
|
|
undefined,
|
|
'a',
|
|
1,
|
|
true,
|
|
{0: 'a'},
|
|
[1, 2, 3],
|
|
new Array([1, 2, 3])
|
|
],
|
|
n: [25]
|
|
});
|
|
|
|
function main(conf) {
|
|
var prim = conf.prim;
|
|
var n = +conf.n;
|
|
var primArray;
|
|
var primArrayCompare;
|
|
var x;
|
|
|
|
primArray = new Array();
|
|
primArrayCompare = new Array();
|
|
for (x = 0; x < (1e5); x++) {
|
|
primArray.push(prim);
|
|
primArrayCompare.push(prim);
|
|
}
|
|
|
|
bench.start();
|
|
for (x = 0; x < n; x++) {
|
|
assert.deepEqual(primArray, primArrayCompare);
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|