-
Notifications
You must be signed in to change notification settings - Fork 31.2k
New issue
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
assert: fix EOL issue in messages on Windows #20754
Conversation
.slice(args[0].start, args[args.length - 1].end) | ||
.replace(escapeSequencesRegExp, escapeFn); | ||
if (EOL === '\r\n') { | ||
message = message.replace(/\r\n/g, '\n'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe I am just bikeshedding, but what if the user deliberately put \r\n
in their custom messages?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This message is not a user message. It is the code that is read and parsed from the file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@BridgeAR Oh, didn't look at this close enough, sorry. In that case it should probably be fine.
PR-URL: nodejs#20754 Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
Landed in 2c42999 |
PR-URL: #20754 Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
My take of #19221. @joyeecheung please feel free to close this PR and just update yours.
I cite @joyeecheung:
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes