Socket
Socket
Sign inDemoInstall

@warerebel/azureblobstoragehelper

Package Overview
Dependencies
1
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.5.1 to 0.5.2

14

lib/azureBlobStorage.js

@@ -85,2 +85,16 @@ const https = require("https");

getPath(options, callback) {
let pathOptions = {
method: "HEAD",
protocol: "https:",
host: this.storageAccount.concat(".dfs.core.windows.net"),
path: "/".concat(options.filesystem, "/", options.filename),
headers: options.httpHeaders || {}
};
pathOptions.headers["x-ms-date"] = new Date().toUTCString();
pathOptions.headers["x-ms-version"] = "2019-02-02";
pathOptions.headers["Content-Length"] = 0;
this.executeRequest(pathOptions, null, callback);
}
flushContent(options, callback) {

@@ -87,0 +101,0 @@ let flushOptions = {

2

package.json
{
"name": "@warerebel/azureblobstoragehelper",
"version": "0.5.1",
"version": "0.5.2",
"description": "Module to ease the storing of data in azure gen2 blob storage",

@@ -5,0 +5,0 @@ "main": "lib/azureBlobStorage.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