Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-transform-simplify-comparison-operators

Package Overview
Dependencies
Maintainers
5
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-transform-simplify-comparison-operators

Convert === and !== to == and != if their types are inferred to be the same.

  • 6.9.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
339K
increased by0.38%
Maintainers
5
Weekly downloads
 
Created
Source

babel-plugin-transform-simplify-comparison-operators

Convert === and !== to == and != if their types are inferred to be the same.

Example

In

typeof foo === "object";

Out

typeof foo == "object";

Installation

npm install babel-plugin-transform-simplify-comparison-operators --save-dev

Usage

.babelrc

{
  "plugins": ["transform-simplify-comparison-operators"]
}

Via CLI

babel --plugins transform-simplify-comparison-operators script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["transform-simplify-comparison-operators"]
});

Keywords

FAQs

Package last updated on 14 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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