File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lib/node_modules/@stdlib/bench/harness/lib Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 20
20
21
21
// MODULES //
22
22
23
- var StdlibTransformStream = require ( '@stdlib/streams/node/transform' ) ;
23
+ var TransformStream = require ( '@stdlib/streams/node/transform' ) ; // eslint-disable-line stdlib/no-redeclare
24
24
var setReadOnly = require ( '@stdlib/utils/define-nonenumerable-read-only-property' ) ;
25
25
var isFunction = require ( '@stdlib/assert/is-function' ) ;
26
26
var format = require ( '@stdlib/string/format' ) ;
@@ -76,7 +76,7 @@ function createStream( options ) {
76
76
bench = harness ( ) ;
77
77
return bench . createStream ( opts ) ;
78
78
}
79
- stream = new StdlibTransformStream ( opts ) ;
79
+ stream = new TransformStream ( opts ) ;
80
80
opts . stream = stream ;
81
81
82
82
// Create a harness which uses the created output stream:
You can’t perform that action at this time.
0 commit comments