co-bluebird
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -6,1 +6,5 @@ # Changelog | ||
* Initial release | ||
## 0.0.2 | ||
* Pass `this` context in `co.wrap()` |
@@ -12,4 +12,4 @@ // -------------------- | ||
cob.wrap = function(fn) { | ||
return bluebird.method(co.wrap(fn)); | ||
cob.wrap = function(fn) { // jshint ignore:line | ||
return bluebird.method(co.wrap.apply(this, arguments)); | ||
}; | ||
@@ -16,0 +16,0 @@ |
{ | ||
"name": "co-bluebird", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "co with bluebird promises", | ||
@@ -5,0 +5,0 @@ "main": "./lib/", |
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
6058