Skip to content

Commit fe0c819

Browse files
committed
fixed Javascript lint errors
1 parent 3f386fa commit fe0c819

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/assert/is-configurable-property-in/benchmark

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/assert/is-configurable-property-in/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ bench( pkg, function benchmark( b ) {
3333
var arr;
3434
var i;
3535

36-
arr = new Array( 100 );
36+
arr = Array( 100 ).fill( 0 );
3737

3838
b.tic();
3939
for ( i = 0; i < b.iterations; i++ ) {

0 commit comments

Comments
 (0)