Skip to content

Commit e9d3b05

Browse files
committed
fix: lint issues
1 parent e0a5219 commit e9d3b05

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/http/fetch.node.js

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ exports.Headers = Headers
3838
/**
3939
* Takes fetch options and wraps request body to track upload progress if
4040
* `onUploadProgress` is supplied. Otherwise returns options as is.
41+
*
4142
* @param {FetchOptions} options
4243
* @returns {FetchOptions}
4344
*/
@@ -57,6 +58,7 @@ const withUploadProgress = (options) => {
5758
/**
5859
* Takes request `body` and `onUploadProgress` handler and returns wrapped body
5960
* that as consumed will report progress to supplied `onUploadProgress` handler.
61+
*
6062
* @param {FetchOptions} init
6163
* @param {function(LoadProgress):void} onUploadProgress
6264
* @returns {Readable}
@@ -97,6 +99,7 @@ const normalizeBody = (input = null) => {
9799
* Takes body from native-fetch response as body and `onUploadProgress` handler
98100
* and returns async iterable that emits body chunks and emits
99101
* `onUploadProgress`.
102+
*
100103
* @param {Buffer|null|Readable} body
101104
* @param {function(LoadProgress):void} onUploadProgress
102105
* @returns {AsyncIterable<Buffer>}

0 commit comments

Comments
 (0)