Lambdaでzipを作ってレスポンスしてたけど解凍がうまくかなかった

起こったこと LambdaでZipをつくって返却しようとしていたのだが、返却されたzipが解凍できなかった。 ハンドラーでやったこと const buffer = zip.toBuffer(); return { statusCode: 200, headers: { "Content-Type": "application/zip", 'Content-Disposition': 'attachment; filename=diff.zip', }, body: buffer.toStr…