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

paramax-framework

Package Overview
Dependencies
Maintainers
0
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

paramax-framework - npm Package Compare versions

Comparing version 1.0.9 to 1.0.10

22

dist/fe-fwk.js

@@ -49,13 +49,2 @@ function setAttributes(el, attrs) {

function addEventListener(eventName, handler, el, hostComponent = null) {
function boundHandler(event) {
event.preventDefault();
event.stopPropagation();
hostComponent
? handler.apply(hostComponent, arguments)
: handler(...arguments);
}
el.addEventListener(eventName, boundHandler);
return boundHandler;
}
function addEventListeners(listeners = {}, el, hostComponent = null) {

@@ -74,2 +63,13 @@ const addedListeners = {};

}
function addEventListener(eventName, handler, el, hostComponent = null) {
function boundHandler(event) {
event.preventDefault();
event.stopPropagation();
hostComponent
? handler.apply(hostComponent, arguments)
: handler(...arguments);
}
el.addEventListener(eventName, boundHandler);
return boundHandler;
}

@@ -76,0 +76,0 @@ function withoutNulls(arr) {

{
"name": "paramax-framework",
"version": "1.0.9",
"version": "1.0.10",
"description": "A lightweight framework",

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

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