Socket
Socket
Sign inDemoInstall

asyncgo

Package Overview
Dependencies
2
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.1 to 0.0.2

15

lib/async.go.js

@@ -8,3 +8,3 @@ var async = require('async');

*/
module.exports = function() {
var asyncgo = function() {
var self = this;

@@ -74,5 +74,14 @@

// Apply the method with arguments.
self[method].apply(self, args);
var ref = asyncgo.getRef.call(self, method, args);
ref[method].apply(ref, args);
});
};
};
};
// Allow them to change the reference.
asyncgo.getRef = function(method, args) {
return this[method];
};
// Set the export.
module.exports = asyncgo;

2

package.json
{
"name": "asyncgo",
"version": "0.0.1",
"version": "0.0.2",
"description": "Provides a wrapper method for easily integrating asynchronous callbacks with Async.js.",

@@ -5,0 +5,0 @@ "author": {

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc