We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
The space appear when Promise takes longer to execute:
lips> (Promise.resolve "x") "x" lips> (new Promise (lambda (r) (setTimeout (lambda () (r "x")) 100))) "x"
Sorry, something went wrong.
fix space in front of output in REPL #406
f8b256c
It was part of the undocumented _refreshLine readline method:
_refreshLine
https://github.com/nodejs/node/blob/main/lib/internal/readline/interface.js#L500C1-L503C6
// Force terminal to allocate a new line if (lineCols === 0) { this[kWriteToOutput](' '); }
No branches or pull requests
The text was updated successfully, but these errors were encountered: