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

electron-event-flux

Package Overview
Dependencies
Maintainers
1
Versions
141
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electron-event-flux - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

9

lib/MultiWinCacheStore.js

@@ -211,2 +211,11 @@ "use strict";

var width_1 = parseInt(params.width), height_1 = parseInt(params.height);
if (params.minWidth && params.minHeight) {
win.setMinimumSize(parseInt(params.minWidth), parseInt(params.minHeight));
}
if (params.maxWidth && params.maxHeight) {
win.setMaximumSize(parseInt(params.maxWidth), parseInt(params.maxHeight));
}
if (params.title) {
win.setTitle(params.title);
}
win[setBoundsFunc_1]({

@@ -213,0 +222,0 @@ x: x_1, y: y_1, width: width_1, height: height_1,

2

package.json
{
"name": "electron-event-flux",
"version": "1.3.0",
"version": "1.3.1",
"description": "Redux store which synchronizes between instances in multiple process",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -202,2 +202,11 @@ import MultiWinStore from './MultiWinStore';

let width = parseInt(params.width), height = parseInt(params.height);
if (params.minWidth && params.minHeight) {
win.setMinimumSize(parseInt(params.minWidth), parseInt(params.minHeight));
}
if (params.maxWidth && params.maxHeight) {
win.setMaximumSize(parseInt(params.maxWidth), parseInt(params.maxHeight));
}
if (params.title) {
win.setTitle(params.title);
}
win[setBoundsFunc]({

@@ -204,0 +213,0 @@ x, y, width, height,

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