mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
docs(std): Fix default value in comment (#5539)
This commit is contained in:
parent
c4f356bda5
commit
4d3bcd807d
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ export class MultipartReader {
|
||||||
* overflowed file data will be written to temporal files.
|
* overflowed file data will be written to temporal files.
|
||||||
* String field values are never written to files.
|
* String field values are never written to files.
|
||||||
* null value means parsing or writing to file was failed in some reason.
|
* null value means parsing or writing to file was failed in some reason.
|
||||||
* @param maxMemory maximum memory size to store file in memory. bytes. @default 1048576 (1MB)
|
* @param maxMemory maximum memory size to store file in memory. bytes. @default 10485760 (10MB)
|
||||||
* */
|
* */
|
||||||
async readForm(maxMemory = 10 << 20): Promise<MultipartFormData> {
|
async readForm(maxMemory = 10 << 20): Promise<MultipartFormData> {
|
||||||
const fileMap = new Map<string, FormFile>();
|
const fileMap = new Map<string, FormFile>();
|
||||||
|
|
Loading…
Reference in a new issue