Socket
Socket
Sign inDemoInstall

babel-plugin-check-es2015-constants

Package Overview
Dependencies
3
Maintainers
6
Versions
41
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-plugin-check-es2015-constants

Compile ES2015 constants to ES5


Version published
Weekly downloads
1.4M
increased by1.23%
Maintainers
6
Install size
2.23 MB
Created
Weekly downloads
 

Readme

Source

babel-plugin-check-es2015-constants

Validate ES2015 constants (prevents reassignment of const variables).

Example

In

const a = 1;
a = 2;

Out

repl: "a" is read-only
  1 | const a = 1;
> 2 | a = 2;
    | ^

Try in REPL

Installation

npm install --save-dev babel-plugin-check-es2015-constants

Usage

.babelrc

{
  "plugins": ["check-es2015-constants"]
}

Via CLI

babel --plugins check-es2015-constants script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["check-es2015-constants"]
});

Note

This check will only validate consts. If you need it to compile down to var then you must also install and enable transform-es2015-block-scoping.

Keywords

FAQs

Last updated on 20 Jan 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc