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 7b7ef7f commit 18a91aaCopy full SHA for 18a91aa
lib/node_modules/@stdlib/string/base/replace-after/benchmark/benchmark.js
@@ -45,7 +45,7 @@ bench( pkg, function benchmark( b ) {
45
46
b.tic();
47
for ( i = 0; i < b.iterations; i++ ) {
48
- out = replaceAfter( str, values[i%values.length], fromCodePoint( i%126 ) ); // eslint-disable-line max-len
+ out = replaceAfter( str, values[ i % values.length ], fromCodePoint( i%126 ) ); // eslint-disable-line max-len
49
if ( typeof out !== 'string' ) {
50
b.fail( 'should return a string' );
51
}
0 commit comments