Socket
Socket
Sign inDemoInstall

@vtfk/azure-blob-client

Package Overview
Dependencies
35
Maintainers
8
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.3 to 0.1.4

4

index.js

@@ -255,2 +255,3 @@ /*

* @param {string?} options.containerName The name of the Azure storage account container name
* @param {string?} options.excludeBlobNames Blob names that will NOT be removed
* @returns { Promise<String> | Promise<[String]>} The deleted paths

@@ -273,4 +274,5 @@ */

if (!blob.path) continue;
if (options.excludeBlobNames && Array.isArray(options.excludeBlobNames) && options.excludeBlobNames.includes(blob.name)) continue;
await containerClient.getBlockBlobClient(blob.path).deleteIfExists(options);
paths.push(blob.path);
await containerClient.getBlockBlobClient(blob.path).deleteIfExists(options);
}

@@ -277,0 +279,0 @@

{
"name": "@vtfk/azure-blob-client",
"version": "0.1.3",
"version": "0.1.4",
"description": "A client for working with Azure storage blobs",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc