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
3 changes: 0 additions & 3 deletions benchmark/assert/deepequal-prims-and-objs-big-loop.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ const primValues = {
'empty_object': {},
'regexp': /abc/i,
'date': new Date(),
'invalidDate': new Date('foo'),
};

const primValues2 = {
Expand All @@ -35,7 +34,6 @@ const primValues2 = {
'empty_object': {},
'regexp': /abc/i,
'date': new Date(primValues.date),
'invalidDate': new Date('foo'),
};

const primValuesUnequal = {
Expand All @@ -51,7 +49,6 @@ const primValuesUnequal = {
'empty_object': [],
'regexp': /abc/g,
'date': new Date(primValues.date.getTime() + 1),
'invalidDate': new Date(),
};

const bench = common.createBenchmark(main, {
Expand Down
Loading