You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -64,20 +64,22 @@ function onRead( error, data ) {
64
64
stdin( 'utf8', onRead );
65
65
```
66
66
67
-
When a file's calling Node.js process is running in a [TTY][tty] context (i.e., no `stdin`), `data` will either be an empty [`Buffer`][buffer] (no encoding provided) or an empty `string` (encoding provided).
67
+
When a file's calling Node.js process is running in a [TTY][tty] context (i.e., no [`stdin`][@stdlib/streams/node/stdin]), `data` will either be an empty [`Buffer`][buffer] (no encoding provided) or an empty `string` (encoding provided).
68
68
69
69
<!-- run-disable -->
70
70
71
71
```javascript
72
+
var stream =require( '@stdlib/streams/node/stdin' );
0 commit comments