method Process.prototype.stdin
Process.prototype.stdin(): Writable<
Uint8Array
| Uint8Array[]
| string
| string[]
>

stdin as a WritableIterable.

This property is here to make the interface philosophically compatible with stdin of the wrapped process, but uses a mechanism that JavaScript does not optimize very well. Recommend using writeToStdin instead if that is possible.

Return Type

Writable<
Uint8Array
| Uint8Array[]
| string
| string[]
>

Usage

import { Process } from ".";