1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 23:34:47 -05:00

fix: Use Buffer.writeSync in MultipartBuilder (#7542)

This commit is contained in:
Ryan Dahl 2020-09-17 11:03:05 -04:00 committed by GitHub
parent 46bf660e36
commit 3e98d9091f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,7 +52,7 @@
} }
buf += `\r\n`; buf += `\r\n`;
this.writer.write(encoder.encode(buf)); this.writer.writeSync(encoder.encode(buf));
}; };
#writeFileHeaders = ( #writeFileHeaders = (