Comparing version 0.0.2 to 0.0.3
@@ -6,6 +6,16 @@ // aa.js - async-await.js | ||
function aa() { | ||
var util = require('util'); | ||
var inspect = util.inspect; | ||
function aa(a) { | ||
if (typeof a === 'function' && | ||
a.constructor.name === 'GeneratorFunction') { | ||
return aa.co.call(this, a); | ||
} | ||
return aa.chan.apply(this, arguments); | ||
} | ||
aa.thunkify = require('./thunkify'); | ||
aa.chan = require('./chan'); | ||
aa.co = require('co'); | ||
@@ -12,0 +22,0 @@ exports = module.exports = aa; |
{ | ||
"name": "aa", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "reserved", | ||
@@ -19,5 +19,5 @@ "main": "lib/aa.js", | ||
"homepage": "https://github.com/LightSpeedWorks/aa", | ||
"devDependencies": { | ||
"dependencies": { | ||
"co": ">=3.0.5" | ||
} | ||
} |
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
18712
0
12
605
1
1
+ Addedco@>=3.0.5
+ Addedco@4.6.0(transitive)