Skip to content

Commit 6763bed

Browse files
mattprdanielleadams
authored andcommitted
doc: readline 'line' event emits final line
Updated docs to reflect current behaviour of readline: final line of input will be emitted via `'line'` event when input stream `'end'` event is emitted even when the input is not newline terminated. Refs: nodejs/node-v0.x-archive#7238 PR-URL: #42214 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 830f93d commit 6763bed

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

doc/api/readline.md

+3
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ The `'line'` event is emitted whenever the `input` stream receives an
8282
end-of-line input (`\n`, `\r`, or `\r\n`). This usually occurs when the user
8383
presses <kbd>Enter</kbd> or <kbd>Return</kbd>.
8484

85+
The `'line'` event is also emitted if new data has been read from a stream and
86+
that stream ends without a final end-of-line marker.
87+
8588
The listener function is called with a string containing the single line of
8689
received input.
8790

0 commit comments

Comments
 (0)