Socket
Socket
Sign inDemoInstall

jscs

Package Overview
Dependencies
Maintainers
3
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jscs - npm Package Compare versions

Comparing version 1.4.4 to 1.4.5

2

lib/rules/disallow-space-after-binary-operators.js

@@ -46,3 +46,3 @@ var assert = require('assert');

var operator = token.value;
if (operator !== ',' && operator !== '=') {
if (operator !== ',' && operator !== '=' || !operators[operator]) {
return;

@@ -49,0 +49,0 @@ }

@@ -45,3 +45,3 @@ var assert = require('assert');

var operator = token.value;
if (operator !== ',' && operator !== '=') {
if (operator !== ',' && operator !== '=' || !operators[operator]) {
return;

@@ -48,0 +48,0 @@ }

@@ -46,3 +46,3 @@ var assert = require('assert');

var operator = token.value;
if (operator !== ',' && operator !== '=') {
if (operator !== ',' && operator !== '=' || !operators[operator]) {
return;

@@ -49,0 +49,0 @@ }

@@ -45,3 +45,3 @@ var assert = require('assert');

var operator = token.value;
if (operator !== ',' && operator !== '=') {
if (operator !== ',' && operator !== '=' || !operators[operator]) {
return;

@@ -48,0 +48,0 @@ }

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

"name": "jscs",
"version": "1.4.4",
"version": "1.4.5",
"main": "lib/checker",

@@ -8,0 +8,0 @@ "homepage": "https://github.com/mdevils/node-jscs",

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