chore: make hasBinary
of socket.io-parser
work more like the original
#17988
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
User facing changelog
N/A
Additional details
hasBinary
should work like the originalAny implementation details to explain?
The original
hasBinary
detects binary data insidetoJSON()
functions.But the patched version doesn't do that because we don't have the
toJSON
argument. Theobj.toJSON && typeof obj.toJSON === "function" && arguments.length === 1
in the code is always false becausearguments.length
is alwaystrue
.This PR solves this problem.
What is affected by this change?
I guess there are none of them. Even if binary objects are In
toJSON()
, it will be converted tostring
eventually when encoding them. So, the encoded result is the same.It might be useful when a developer use the patched
hasBinary
directly in their code. But it doesn't change anything for now.How has the user experience changed?
N/A
PR Tasks