npm.io
6.22.0 • Published 9 years ago

babel-plugin-undeclared-variables-check

Licence
MIT
Version
6.22.0
Deps
2
Vulns
0
Weekly
0
Stars
44.0K

babel-plugin-undeclared-variables-check

This plugin throws a compile-time error on references to undeclared variables.

Example

In

function foo() {}
foo();
bar();

Out

ReferenceError: stdin: Line 3: Reference to undeclared variable "bar" - did you mean "foo"?
  1 | function foo() {}
  2 | foo();
> 3 | bar();
    | ^
  4 |

Installation

npm install --save-dev babel-plugin-undeclared-variables-check

Usage

.babelrc

{
  "plugins": ["undeclared-variables-check"]
}
Via CLI
babel --plugins undeclared-variables-check script.js
Via Node API
require("babel-core").transform("code", {
  plugins: ["undeclared-variables-check"]
});

Keywords