File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -47,13 +47,11 @@ var isNodeStreamLike = require( '@stdlib/assert-is-node-stream-like' );
47
47
function isNodeWritableStreamLike ( value ) {
48
48
return (
49
49
// Must be stream-like:
50
- isNodeStreamLike ( value ) &&
50
+ ( isNodeStreamLike ( value ) &&
51
51
52
52
// Should have writable stream methods:
53
- typeof value . _write === 'function' &&
54
-
55
- // Should have writable stream state:
56
- typeof value . _writableState === 'object'
53
+ typeof value . _write === 'function' && // Should have writable stream state:
54
+ typeof value . _writableState === 'object' )
57
55
) ;
58
56
}
59
57
Original file line number Diff line number Diff line change 37
37
"url" : " https://github.com/stdlib-js/stdlib/issues"
38
38
},
39
39
"dependencies" : {
40
- "@stdlib/assert-is-node-stream-like" : " ^0.2.2"
40
+ "@stdlib/assert-is-node-stream-like" : " ^0.2.2" ,
41
+ "@stdlib/error-tools-fmtprodmsg" : " ^0.2.2"
41
42
},
42
43
"devDependencies" : {
43
44
"@stdlib/assert-is-boolean" : " ^0.2.2" ,
89
90
"type" : " opencollective" ,
90
91
"url" : " https://opencollective.com/stdlib"
91
92
}
92
- }
93
+ }
You can’t perform that action at this time.
0 commit comments