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

eve

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eve - npm Package Compare versions

Comparing version 0.5.1 to 0.5.2

2

component.json

@@ -5,3 +5,3 @@ {

"description": "Custom Events",
"version": "0.5.1",
"version": "0.5.2",
"keywords": ["events"],

@@ -8,0 +8,0 @@ "dependencies": {},

@@ -1,9 +0,9 @@

// Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved.
//
// Copyright (c) 2017 Adobe Systems Incorporated. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//
// http://www.apache.org/licenses/LICENSE-2.0
//
//
// Unless required by applicable law or agreed to in writing, software

@@ -15,3 +15,3 @@ // distributed under the License is distributed on an "AS IS" BASIS,

// ┌────────────────────────────────────────────────────────────┐ \\
// │ Eve 0.5.0 - JavaScript Events Library │ \\
// │ Eve 0.5.2 - JavaScript Events Library │ \\
// ├────────────────────────────────────────────────────────────┤ \\

@@ -22,3 +22,3 @@ // │ Author Dmitry Baranovskiy (http://dmitry.baranovskiy.com/) │ \\

(function (glob) {
var version = "0.5.0",
var version = "0.5.2",
has = "hasOwnProperty",

@@ -210,3 +210,3 @@ separator = /[\.\/]/,

**
= (function) returned function accepts a single numeric parameter that represents z-index of the handler. It is an optional feature and only used when you need to ensure that some subset of handlers will be invoked in a given order, despite of the order of assignment.
= (function) returned function accepts a single numeric parameter that represents z-index of the handler. It is an optional feature and only used when you need to ensure that some subset of handlers will be invoked in a given order, despite of the order of assignment.
> Example:

@@ -451,3 +451,4 @@ | eve.on("mouse", eatIt)(2);

};
glob.eve = eve;
(typeof module != "undefined" && module.exports) ? (module.exports = eve) : (typeof define === "function" && define.amd ? (define("eve", [], function() { return eve; })) : (glob.eve = eve));
})(this);
})(window || this);

@@ -10,3 +10,3 @@ {

"description" : "Simple custom events",
"version" : "0.5.1",
"version" : "0.5.2",

@@ -13,0 +13,0 @@ "main" : "./eve.js",

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