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 code is this:
paths-filter/src/exec.ts
Lines 10 to 11 in 8c7f485
However, consider that stdout/stderr has fancy Unicode, the data may arrive in chunks, other than the code point boundaries.
toString conversion will then clobber the code points:
toString
> Buffer.from([0xf0, 0x9f]).toString() + Buffer.from([0x98, 0x84]).toString() '���' > Buffer.from([0xf0, 0x9f, 0x98, 0x84]).toString() '😄'
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The code is this:
paths-filter/src/exec.ts
Lines 10 to 11 in 8c7f485
However, consider that stdout/stderr has fancy Unicode, the data may arrive in chunks, other than the code point boundaries.
toString
conversion will then clobber the code points:The text was updated successfully, but these errors were encountered: