-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
In docs remove Object as a data type for send #2077
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
See #2076 (comment). |
lpinca
reviewed
Sep 18, 2022
doc/ws.md
Outdated
- `data` {Array|Number|Object|String|ArrayBuffer|Buffer|DataView|TypedArray} The | ||
data to send. For Object values, the passed-in item will be serialized through | ||
node's own | ||
[Buffer.from()](https://nodejs.org/api/buffer.html#static-method-bufferfromobject-offsetorencoding-length) |
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.
Suggested change
[Buffer.from()](https://nodejs.org/api/buffer.html#static-method-bufferfromobject-offsetorencoding-length) | |
[`Buffer.from()`](https://nodejs.org/api/buffer.html#static-method-bufferfromobject-offsetorencoding-length) |
Also, for consistency can you please move the link to the bottom?
doc/ws.md
Outdated
node's own | ||
[Buffer.from()](https://nodejs.org/api/buffer.html#static-method-bufferfromobject-offsetorencoding-length) | ||
function, which defines additional constraints. If those constraints are not | ||
met, a TypeError will occur. |
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.
Suggested change
met, a TypeError will occur. | |
met, a `TypeError` will occur. |
Add reference to Node.js's own related documentation about the constraints on `Object` values.
lpinca
force-pushed
the
dliblik-fix-docs
branch
from
September 18, 2022 18:35
37e5320
to
2a13a7b
Compare
lpinca
approved these changes
Sep 18, 2022
Thank you. |
Merged
7 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
websocket.send does not support a plain old Object of any shape and throws a TypeError.
This fixes the docs to remove Object as a supported type for the data parameter
Addresses #2076