New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

aa

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aa - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

lib/chan-simple.js

12

lib/aa.js

@@ -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;

4

package.json
{
"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"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc