@azure/storage-blob
Version:
Microsoft Azure Storage SDK for JavaScript - Blob
21 lines • 835 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
exports.StorageContextClient = void 0;
const index_js_1 = require("./generated/src/index.js");
/**
* @internal
*/
class StorageContextClient extends index_js_1.StorageClient {
async sendOperationRequest(operationArguments, operationSpec) {
const operationSpecToSend = { ...operationSpec };
if (operationSpecToSend.path === "/{containerName}" ||
operationSpecToSend.path === "/{containerName}/{blob}") {
operationSpecToSend.path = "";
}
return super.sendOperationRequest(operationArguments, operationSpecToSend);
}
}
exports.StorageContextClient = StorageContextClient;
//# sourceMappingURL=StorageContextClient.js.map