Skip to content

Commit 512d5e1

Browse files
authored
Update lib/node_modules/@stdlib/string/base/replace-after/benchmark/benchmark.js
1 parent 43da1b6 commit 512d5e1

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/string/base/replace-after/benchmark

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/string/base/replace-after/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ bench( pkg, function benchmark( b ) {
4545

4646
b.tic();
4747
for ( i = 0; i < b.iterations; i++ ) {
48-
out = replaceAfter( str, values[i%values.length], fromCodePoint( i%126 ) ); // eslint-disable-line max-len
48+
out = replaceAfter( str, values[ i % values.length ], fromCodePoint( i%126 ) ); // eslint-disable-line max-len
4949
if ( typeof out !== 'string' ) {
5050
b.fail( 'should return a string' );
5151
}

0 commit comments

Comments
 (0)