Skip to content

Commit e2b72c2

Browse files
MaleDongtargos
MaleDong
authored andcommitted
lib: remove unnecessary symbols
Remove `(...)`, because this is a simple,sensitive expression. PR-URL: #22455 Reviewed-By: Weijia Wang <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gus Caplan <[email protected]> Reviewed-By: Tiancheng "Timothy" Gu <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent bd6b2ab commit e2b72c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/_stream_readable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ function Readable(options) {
147147

148148
// Checking for a Stream.Duplex instance is faster here instead of inside
149149
// the ReadableState constructor, at least with V8 6.5
150-
const isDuplex = (this instanceof Stream.Duplex);
150+
const isDuplex = this instanceof Stream.Duplex;
151151

152152
this._readableState = new ReadableState(options, this, isDuplex);
153153

0 commit comments

Comments
 (0)