async-await
Advanced tools
Comparing version 0.1.34 to 0.1.35
@@ -364,3 +364,3 @@ // aa.js - async-await.js | ||
function close() { return channel.close(); } | ||
function error(err) { return channel.send(err); } | ||
function error(err) { try { channel.send(err); } catch (e) {} } | ||
@@ -370,3 +370,3 @@ function readable() { | ||
if (!buf) return; | ||
channel.send(buf); | ||
try { channel.send(buf); } catch (e) {} | ||
} // readable | ||
@@ -373,0 +373,0 @@ } // stream |
{ | ||
"name": "async-await", | ||
"version": "0.1.34", | ||
"version": "0.1.35", | ||
"description": "aa - async-await. co like library, go like channel, thunkify or promisify wrap package.", | ||
@@ -5,0 +5,0 @@ "main": "aa.js", |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
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
41396
4
1223
2
0
9