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.
34 lines
650 B
34 lines
650 B
'use strict';
|
|
var common = require('../common.js');
|
|
var assert = require('assert');
|
|
|
|
const primValues = {
|
|
'null': null,
|
|
'undefined': undefined,
|
|
'string': 'a',
|
|
'number': 1,
|
|
'boolean': true,
|
|
'object': { 0: 'a' },
|
|
'array': [1, 2, 3],
|
|
'new-array': new Array([1, 2, 3])
|
|
};
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
prim: Object.keys(primValues),
|
|
n: [1e5]
|
|
});
|
|
|
|
function main(conf) {
|
|
var prim = primValues[conf.prim];
|
|
var n = +conf.n;
|
|
var x;
|
|
|
|
bench.start();
|
|
|
|
for (x = 0; x < n; x++) {
|
|
// eslint-disable-next-line no-restricted-properties
|
|
assert.deepEqual(new Array([prim]), new Array([prim]));
|
|
}
|
|
|
|
bench.end(n);
|
|
}
|
|
|