electron-window-state
Advanced tools
Comparing version 4.1.0 to 4.1.1
@@ -32,4 +32,4 @@ 'use strict'; | ||
Number.isInteger(state.y) && | ||
Number.isInteger(state.width) && | ||
Number.isInteger(state.height); | ||
Number.isInteger(state.width) && state.width > 0 && | ||
Number.isInteger(state.height) && state.height > 0; | ||
} | ||
@@ -36,0 +36,0 @@ |
{ | ||
"name": "electron-window-state", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"description": "Simple module that helps to save and restore size and position of Electron windows.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10128