Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

applicationinsights

Package Overview
Dependencies
Maintainers
1
Versions
152
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

applicationinsights - npm Package Compare versions

Comparing version 0.15.14 to 0.15.15

0

.vscode/launch.json

@@ -0,0 +0,0 @@ {

@@ -0,0 +0,0 @@ // Available variables which can be used inside of strings.

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ ///<reference path="..\Declarations\node\node.d.ts" />

@@ -0,0 +0,0 @@ ///<reference path="..\Declarations\node\node.d.ts" />

@@ -0,0 +0,0 @@ ///<reference path="..\Declarations\node\node.d.ts" />

@@ -0,0 +0,0 @@ ///<reference path="..\Declarations\node\node.d.ts" />

9

Library/Channel.js

@@ -72,3 +72,4 @@ "use strict";

Channel.prototype.triggerSend = function (isNodeCrashing, callback) {
if (this._buffer.length) {
var bufferIsEmpty = this._buffer.length < 1;
if (!bufferIsEmpty) {
// compose an array of payloads

@@ -79,2 +80,5 @@ var batch = this._buffer.join("\n");

this._sender.saveOnCrash(batch);
if (typeof callback === "function") {
callback("data saved on crash");
}
}

@@ -91,2 +95,5 @@ else {

this._timeoutHandle = null;
if (bufferIsEmpty && typeof callback === "function") {
callback("no data to send");
}
};

@@ -93,0 +100,0 @@ Channel.prototype._stringify = function (envelope) {

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ ///<reference path="..\Declarations\node\node.d.ts" />

@@ -0,0 +0,0 @@ ///<reference path="..\Declarations\node\node.d.ts" />

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ ///<reference path="..\Declarations\node\node.d.ts" />

@@ -0,0 +0,0 @@ "use strict";

2

package.json

@@ -5,3 +5,3 @@ {

"bugs": "https://github.com/Microsoft/ApplicationInsights-node.js/issues",
"version": "0.15.14",
"version": "0.15.15",
"description": "Microsoft Application Insights module for Node.JS",

@@ -8,0 +8,0 @@ "repository": {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc