Skip to content

Commit b4d80c5

Browse files
authored
style: disable lint rule
Signed-off-by: Athan <[email protected]>
1 parent 3da2d71 commit b4d80c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/bench/harness/lib/runner/create_stream.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
// MODULES //
2424

25-
var StdlibTransformStream = require( '@stdlib/streams/node/transform' );
25+
var TransformStream = require( '@stdlib/streams/node/transform' ); // eslint-disable-line stdlib/no-redeclare
2626
var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
2727
var nextTick = require( './../utils/next_tick.js' );
2828

@@ -56,7 +56,7 @@ function createStream( options ) {
5656
} else {
5757
opts = {};
5858
}
59-
stream = new StdlibTransformStream( opts );
59+
stream = new TransformStream( opts );
6060
if ( opts.objectMode ) {
6161
id = 0;
6262
this.on( '_push', onPush );

0 commit comments

Comments
 (0)