Skip to content

Commit 510bbde

Browse files
chore: fix JavaScript lint errors
PR-URL: #8086 Closes: #8082 Co-authored-by: Athan Reines <[email protected]> Reviewed-by: Athan Reines <[email protected]>
1 parent 3eb896b commit 510bbde

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/assert/is-odd/benchmark

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/assert/is-odd/benchmark/benchmark.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable no-new-wrappers, no-undefined, no-empty-function */
19+
/* eslint-disable no-empty-function */
2020

2121
'use strict';
2222

@@ -47,7 +47,7 @@ bench( pkg+'::primitives', function benchmark( b ) {
4747
true,
4848
false,
4949
null,
50-
undefined
50+
void 0
5151
];
5252

5353
b.tic();
@@ -110,7 +110,7 @@ bench( pkg+'::primitives:isPrimitive', function benchmark( b ) {
110110
true,
111111
false,
112112
null,
113-
undefined
113+
void 0
114114
];
115115

116116
b.tic();
@@ -173,7 +173,7 @@ bench( pkg+'::primitives:isObject', function benchmark( b ) {
173173
true,
174174
false,
175175
null,
176-
undefined
176+
void 0
177177
];
178178

179179
b.tic();

0 commit comments

Comments
 (0)