We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eff9b74 commit 379c3c6Copy full SHA for 379c3c6
1 file changed
lib/node_modules/@stdlib/utils/async/parallel/lib/limit.js
@@ -54,7 +54,7 @@ function limit( fcns, opts, done ) {
54
len = fcns.length;
55
debug( 'Number of functions: %d', len );
56
57
- out = new Array( len );
+ out = new Array( len ); // eslint-disable-line stdlib/no-new-array
58
if ( len < opts.limit ) {
59
lim = len;
60
} else {
0 commit comments