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

jupyter-js-services

Package Overview
Dependencies
Maintainers
2
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jupyter-js-services - npm Package Compare versions

Comparing version 0.10.1 to 0.10.2

11

lib/kernel.js

@@ -984,4 +984,5 @@ // Copyright (c) Jupyter Development Team.

var comm = new Comm(content.target_name, content.comm_id, _this._sendCommMessage.bind(_this), function () { _this._unregisterComm(content.comm_id); });
var response;
try {
target(comm, msg);
response = target(comm, msg);
}

@@ -993,5 +994,7 @@ catch (e) {

}
_this._commPromises.delete(comm.commId);
_this._comms.set(comm.commId, comm);
return comm;
return Promise.resolve(response).then(function () {
_this._commPromises.delete(comm.commId);
_this._comms.set(comm.commId, comm);
return comm;
});
});

@@ -998,0 +1001,0 @@ this._commPromises.set(content.comm_id, promise);

{
"name": "jupyter-js-services",
"version": "0.10.1",
"version": "0.10.2",
"description": "Client APIs for the Jupyter services REST APIs",

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

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