1
0
espelhamento de https://github.com/therootcompany/s3.js.git sincronizado 2024-11-16 17:09:00 +00:00

docs: fix typos

Esse commit está contido em:
AJ ONeal 2020-12-17 23:42:01 -05:00
commit eff2395bde

Ver arquivo

@ -34,10 +34,10 @@ s3.set({
bucket,
prefix,
key,
body, // new Buffer("hello, world")
body, // Buffer.from("hello, world")
// or fs.createReadStream("./file.txt")
size // fs.stat("./file.txt").size (required for streams)
size // (await fs.stat("./file.txt")).size (required for streams)
});
```