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

cls-bluebird

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cls-bluebird - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "cls-bluebird",
"version": "1.0.0",
"version": "1.0.1",
"description": "Make bluebird work with the continuation-local-storage module.",

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

@@ -13,3 +13,3 @@ 'use strict';

shimmer.wrap(proto, '_addCallbacks', function(_addCallbacks) {
return function ns_addCallbacks(fulfill, reject, progress, promise, receiver) {
return function ns_addCallbacks(fulfill, reject, progress, promise, receiver, domain) {
if (typeof fulfill === 'function') fulfill = ns.bind(fulfill);

@@ -19,5 +19,5 @@ if (typeof reject === 'function') reject = ns.bind(reject);

return _addCallbacks.call(this, fulfill, reject, progress, promise, receiver);
return _addCallbacks.call(this, fulfill, reject, progress, promise, receiver, domain);
};
});
};
};
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