You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

babel-plugin-minify-flip-comparisons

Package Overview
Dependencies
Maintainers
3
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-minify-flip-comparisons - npm Package Compare versions

Comparing version

to
0.1.0

12

lib/index.js

@@ -39,9 +39,13 @@ "use strict";

case ">":
operator = "<";break;
operator = "<";
break;
case "<":
operator = ">";break;
operator = ">";
break;
case ">=":
operator = "<=";break;
operator = "<=";
break;
case "<=":
operator = ">=";break;
operator = ">=";
break;
}

@@ -48,0 +52,0 @@ node.operator = operator;

{
"name": "babel-plugin-minify-flip-comparisons",
"version": "0.0.2",
"version": "0.1.0",
"description": "",

@@ -15,5 +15,5 @@ "homepage": "https://github.com/babel/babili#readme",

"dependencies": {
"babel-helper-is-void-0": "^0.0.1"
"babel-helper-is-void-0": "^0.1.0"
},
"devDependencies": {}
}