@azure/storage-file-share
Advanced tools
Comparing version 12.26.0-alpha.20241204.1 to 12.26.0-alpha.20241219.1
@@ -96,3 +96,3 @@ // Copyright (c) Microsoft Corporation. | ||
readableStream.on("data", (data) => { | ||
chunks.push(data instanceof Buffer ? data : Buffer.from(data, encoding)); | ||
chunks.push(typeof data === "string" ? Buffer.from(data, encoding) : data); | ||
}); | ||
@@ -99,0 +99,0 @@ readableStream.on("end", () => { |
{ | ||
"name": "@azure/storage-file-share", | ||
"sdk-type": "client", | ||
"version": "12.26.0-alpha.20241204.1", | ||
"version": "12.26.0-alpha.20241219.1", | ||
"description": "Microsoft Azure Storage SDK for JavaScript - File", | ||
@@ -158,3 +158,3 @@ "main": "./dist/index.js", | ||
"karma-sourcemap-loader": "^0.3.8", | ||
"mocha": "^10.0.0", | ||
"mocha": "^11.0.2", | ||
"nyc": "^17.0.0", | ||
@@ -165,5 +165,5 @@ "puppeteer": "^23.0.2", | ||
"ts-node": "^10.0.0", | ||
"typescript": "~5.6.2", | ||
"typescript": "~5.7.2", | ||
"util": "^0.12.1" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
6486302