Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

💥 [process] Remove Process#openStdin deprecated in Node.js v0.3.3 #309

Merged
merged 1 commit into from
Aug 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,6 @@ trait Process extends IEventEmitter {
*/
def nextTick(callback: js.Function0[Any], args: js.Any*): Unit = js.native

@deprecated("Use process.stdin instead", "Node.js v0.3.3")
def openStdin(): ReadStream = js.native

/**
* When Node.js is spawned with an IPC channel attached, it can send messages to its parent process
* using process.send(). Each will be received as a 'message' event on the parent's ChildProcess object.
Expand Down