File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -316,9 +316,19 @@ Returns headers object with Content-Type and Content-Length header
316
316
317
317
#### Instance methods
318
318
319
+ ##### ` values() -> {Generator<Uint8Array | FileLike, void, undefined>} `
320
+
321
+ Creates an iterator allowing to go through form-data parts (with metadata).
322
+ This method ** will not** read the files.
323
+
319
324
##### ` encode() -> {AsyncGenerator<Uint8Array, void, undefined>} `
320
325
321
326
Creates an async iterator allowing to perform the encoding by portions.
327
+ This method ** will** also read files.
328
+
329
+ ##### ` [Symbol.iterator]() -> {Generator<Uint8Array | FileLike, void, undefined>} `
330
+
331
+ An alias for ` Encoder#values() ` method.
322
332
323
333
##### ` [Symbol.asyncIterator]() -> {AsyncGenerator<Uint8Array, void, undefined>} `
324
334
You can’t perform that action at this time.
0 commit comments