Socket
Socket
Sign inDemoInstall

eventemitter2

Package Overview
Dependencies
0
Maintainers
2
Versions
62
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.2.0 to 6.2.1

5

CHANGELOG.md

@@ -9,2 +9,7 @@ # Change Log

## [6.2.1] - 2020-03-20
### Fixed
- #153 - global scope is no longer defaulted to the `window` variable, now supports workers. @DigitalBrainJS
## [6.2.0] - 2020-03-20

@@ -11,0 +16,0 @@

5

lib/eventemitter2.js

@@ -862,5 +862,6 @@ /*!

else {
// Browser global.
window.EventEmitter2 = EventEmitter;
// global for any kind of environment.
var _global= new Function('','return this')();
_global.EventEmitter2 = EventEmitter;
}
}();

2

package.json
{
"name": "eventemitter2",
"version": "6.2.0",
"version": "6.2.1",
"description": "A Node.js event emitter implementation with namespaces, wildcards, TTL and browser support.",

@@ -5,0 +5,0 @@ "keywords": [

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