Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eventproxy

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eventproxy - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

8

lib/eventproxy.js

@@ -477,2 +477,5 @@ /*global exports */

// callback(err, args1, args2, ...)
var args = Array.prototype.slice.call(arguments, 1);
if (typeof handler === 'string') {

@@ -484,3 +487,3 @@ // getAsync(query, ep.done('query'));

// }));
return that.emit(handler, callback ? callback.call(data) : data);
return that.emit(handler, callback ? callback.apply(null, args) : data);
}

@@ -494,3 +497,2 @@

// callback(err, args1, args2, ...)
var args = Array.prototype.slice.call(arguments, 1);
handler.apply(null, args);

@@ -511,3 +513,3 @@ };

};
};
};

@@ -514,0 +516,0 @@ /**

@@ -40,3 +40,3 @@ {

},
"version": "0.2.4",
"version": "0.2.5",
"main": "index.js",

@@ -43,0 +43,0 @@ "directories": {

@@ -1,2 +0,2 @@

EventProxy [![Build Status](https://secure.travis-ci.org/JacksonTian/eventproxy.png)](http://travis-ci.org/JacksonTian/eventproxy) [English Doc](https://github.com/JacksonTian/eventproxy/blob/master/README_en.md)
EventProxy [![Build Status](https://secure.travis-ci.org/JacksonTian/eventproxy.png)](http://travis-ci.org/JacksonTian/eventproxy) [![NPM version](https://badge.fury.io/js/eventproxy.png)](http://badge.fury.io/js/eventproxy) [English Doc](https://github.com/JacksonTian/eventproxy/blob/master/README_en.md)
======

@@ -3,0 +3,0 @@

Sorry, the diff of this file is not supported yet

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