cls-bluebird
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"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); | ||
}; | ||
}); | ||
}; | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1873
17