@@ -17,7 +17,7 @@ class Sender {
17
17
* Creates a Sender instance.
18
18
*
19
19
* @param {net.Socket } socket The connection socket
20
- * @param {Object } extensions An object containing the negotiated extensions
20
+ * @param {Object } [ extensions] An object containing the negotiated extensions
21
21
*/
22
22
constructor ( socket , extensions ) {
23
23
this . _extensions = extensions || { } ;
@@ -37,10 +37,14 @@ class Sender {
37
37
* @param {Buffer } data The data to frame
38
38
* @param {Object } options Options object
39
39
* @param {Number } options.opcode The opcode
40
- * @param {Boolean } options.readOnly Specifies whether `data` can be modified
41
- * @param {Boolean } options.fin Specifies whether or not to set the FIN bit
42
- * @param {Boolean } options.mask Specifies whether or not to mask `data`
43
- * @param {Boolean } options.rsv1 Specifies whether or not to set the RSV1 bit
40
+ * @param {Boolean } [options.readOnly=false] Specifies whether `data` can be
41
+ * modified
42
+ * @param {Boolean } [options.fin=false] Specifies whether or not to set the
43
+ * FIN bit
44
+ * @param {Boolean } [options.mask=false] Specifies whether or not to mask
45
+ * `data`
46
+ * @param {Boolean } [options.rsv1=false] Specifies whether or not to set the
47
+ * RSV1 bit
44
48
* @return {Buffer[] } The framed data as a list of `Buffer` instances
45
49
* @public
46
50
*/
@@ -93,10 +97,10 @@ class Sender {
93
97
/**
94
98
* Sends a close message to the other peer.
95
99
*
96
- * @param {( Number|undefined) } code The status code component of the body
97
- * @param {String } data The message component of the body
98
- * @param {Boolean } mask Specifies whether or not to mask the message
99
- * @param {Function } cb Callback
100
+ * @param {Number } [ code] The status code component of the body
101
+ * @param {String } [ data] The message component of the body
102
+ * @param {Boolean } [ mask=false] Specifies whether or not to mask the message
103
+ * @param {Function } [cb] Callback
100
104
* @public
101
105
*/
102
106
close ( code , data , mask , cb ) {
@@ -132,8 +136,8 @@ class Sender {
132
136
* Frames and sends a close message.
133
137
*
134
138
* @param {Buffer } data The message to send
135
- * @param {Boolean } mask Specifies whether or not to mask `data`
136
- * @param {Function } cb Callback
139
+ * @param {Boolean } [ mask=false] Specifies whether or not to mask `data`
140
+ * @param {Function } [cb] Callback
137
141
* @private
138
142
*/
139
143
doClose ( data , mask , cb ) {
@@ -153,8 +157,8 @@ class Sender {
153
157
* Sends a ping message to the other peer.
154
158
*
155
159
* @param {* } data The message to send
156
- * @param {Boolean } mask Specifies whether or not to mask `data`
157
- * @param {Function } cb Callback
160
+ * @param {Boolean } [ mask=false] Specifies whether or not to mask `data`
161
+ * @param {Function } [cb] Callback
158
162
* @public
159
163
*/
160
164
ping ( data , mask , cb ) {
@@ -175,9 +179,9 @@ class Sender {
175
179
* Frames and sends a ping message.
176
180
*
177
181
* @param {Buffer } data The message to send
178
- * @param {Boolean } mask Specifies whether or not to mask `data`
179
- * @param {Boolean } readOnly Specifies whether `data` can be modified
180
- * @param {Function } cb Callback
182
+ * @param {Boolean } [ mask=false] Specifies whether or not to mask `data`
183
+ * @param {Boolean } [ readOnly=false] Specifies whether `data` can be modified
184
+ * @param {Function } [cb] Callback
181
185
* @private
182
186
*/
183
187
doPing ( data , mask , readOnly , cb ) {
@@ -197,8 +201,8 @@ class Sender {
197
201
* Sends a pong message to the other peer.
198
202
*
199
203
* @param {* } data The message to send
200
- * @param {Boolean } mask Specifies whether or not to mask `data`
201
- * @param {Function } cb Callback
204
+ * @param {Boolean } [ mask=false] Specifies whether or not to mask `data`
205
+ * @param {Function } [cb] Callback
202
206
* @public
203
207
*/
204
208
pong ( data , mask , cb ) {
@@ -219,9 +223,9 @@ class Sender {
219
223
* Frames and sends a pong message.
220
224
*
221
225
* @param {Buffer } data The message to send
222
- * @param {Boolean } mask Specifies whether or not to mask `data`
223
- * @param {Boolean } readOnly Specifies whether `data` can be modified
224
- * @param {Function } cb Callback
226
+ * @param {Boolean } [ mask=false] Specifies whether or not to mask `data`
227
+ * @param {Boolean } [ readOnly=false] Specifies whether `data` can be modified
228
+ * @param {Function } [cb] Callback
225
229
* @private
226
230
*/
227
231
doPong ( data , mask , readOnly , cb ) {
@@ -242,11 +246,15 @@ class Sender {
242
246
*
243
247
* @param {* } data The message to send
244
248
* @param {Object } options Options object
245
- * @param {Boolean } options.compress Specifies whether or not to compress `data`
246
- * @param {Boolean } options.binary Specifies whether `data` is binary or text
247
- * @param {Boolean } options.fin Specifies whether the fragment is the last one
248
- * @param {Boolean } options.mask Specifies whether or not to mask `data`
249
- * @param {Function } cb Callback
249
+ * @param {Boolean } [options.compress=false] Specifies whether or not to
250
+ * compress `data`
251
+ * @param {Boolean } [options.binary=false] Specifies whether `data` is binary
252
+ * or text
253
+ * @param {Boolean } [options.fin=false] Specifies whether the fragment is the
254
+ * last one
255
+ * @param {Boolean } [options.mask=false] Specifies whether or not to mask
256
+ * `data`
257
+ * @param {Function } [cb] Callback
250
258
* @public
251
259
*/
252
260
send ( data , options , cb ) {
@@ -300,14 +308,19 @@ class Sender {
300
308
* Dispatches a data message.
301
309
*
302
310
* @param {Buffer } data The message to send
303
- * @param {Boolean } compress Specifies whether or not to compress `data`
311
+ * @param {Boolean } [compress=false] Specifies whether or not to compress
312
+ * `data`
304
313
* @param {Object } options Options object
305
314
* @param {Number } options.opcode The opcode
306
- * @param {Boolean } options.readOnly Specifies whether `data` can be modified
307
- * @param {Boolean } options.fin Specifies whether or not to set the FIN bit
308
- * @param {Boolean } options.mask Specifies whether or not to mask `data`
309
- * @param {Boolean } options.rsv1 Specifies whether or not to set the RSV1 bit
310
- * @param {Function } cb Callback
315
+ * @param {Boolean } [options.readOnly=false] Specifies whether `data` can be
316
+ * modified
317
+ * @param {Boolean } [options.fin=false] Specifies whether or not to set the
318
+ * FIN bit
319
+ * @param {Boolean } [options.mask=false] Specifies whether or not to mask
320
+ * `data`
321
+ * @param {Boolean } [options.rsv1=false] Specifies whether or not to set the
322
+ * RSV1 bit
323
+ * @param {Function } [cb] Callback
311
324
* @private
312
325
*/
313
326
dispatch ( data , compress , options , cb ) {
@@ -374,7 +387,7 @@ class Sender {
374
387
* Sends a frame.
375
388
*
376
389
* @param {Buffer[] } list The frame to send
377
- * @param {Function } cb Callback
390
+ * @param {Function } [cb] Callback
378
391
* @private
379
392
*/
380
393
sendFrame ( list , cb ) {
0 commit comments