Socket
Socket
Sign inDemoInstall

syntex-automation

Package Overview
Dependencies
Maintainers
1
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

syntex-automation - npm Package Compare versions

Comparing version 1.2.1-b17 to 1.2.1-b18

2

package.json
{
"name": "syntex-automation",
"version": "1.2.1-b17",
"version": "1.2.1-b18",
"description": "An automation system for your smart home",

@@ -5,0 +5,0 @@ "main": "main.js",

@@ -605,5 +605,5 @@ module.exports = class Automation

if((block.operation == '>' && block.state[x] <= state[x])
|| (block.operation == '<' && block.state[x] >= state[x])
|| (block.operation == '=' && block.state[x] != state[x]))
if((state[x] <= block.state[x] && block.operation == '>')
|| (state[x] >= block.state[x] && block.operation == '<')
|| (state[x] != block.state[x] && block.operation == '='))
{

@@ -610,0 +610,0 @@ success = false;

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