Skip to content

Commit 6bca57e

Browse files
authored
revert: undo changes and disable lint rule
Signed-off-by: Athan <[email protected]>
1 parent b5e3101 commit 6bca57e

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/bench/harness/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/bench/harness/lib/main.js

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

2121
// MODULES //
2222

23-
var StdlibTransformStream = require( '@stdlib/streams/node/transform' );
23+
var TransformStream = require( '@stdlib/streams/node/transform' ); // eslint-disable-line stdlib/no-redeclare
2424
var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
2525
var isFunction = require( '@stdlib/assert/is-function' );
2626
var format = require( '@stdlib/string/format' );
@@ -76,7 +76,7 @@ function createStream( options ) {
7676
bench = harness();
7777
return bench.createStream( opts );
7878
}
79-
stream = new StdlibTransformStream( opts );
79+
stream = new TransformStream( opts );
8080
opts.stream = stream;
8181

8282
// Create a harness which uses the created output stream:

0 commit comments

Comments
 (0)