promise-thunk
Advanced tools
Comparing version 0.1.13 to 0.1.14
{ | ||
"name": "promise-thunk", | ||
"version": "0.1.13", | ||
"version": "0.1.14", | ||
"description": "Promise and thunk", | ||
@@ -5,0 +5,0 @@ "main": "promise-thunk.js", |
@@ -550,3 +550,3 @@ // PromiseThunk | ||
typeof this[methodAsyncCached] === 'function' ? this[methodAsyncCached] : | ||
setValue(this, methodAsyncCached, promisify(this, this[method])); | ||
(setValue(this, methodAsyncCached, promisify(this, this[method])), this[methodAsyncCached]); | ||
}, | ||
@@ -602,3 +602,3 @@ configurable: true | ||
typeof this[methodAsyncCached] === 'function' ? this[methodAsyncCached] : | ||
setValue(this, methodAsyncCached, thunkify(this, this[method])); | ||
(setValue(this, methodAsyncCached, thunkify(this, this[method])), this[methodAsyncCached]); | ||
}, | ||
@@ -605,0 +605,0 @@ configurable: true |
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
34085