Skip to content

Latest commit

 

History

History
 
 

babel-plugin-transform-eval

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

babel-plugin-transform-eval

Compile eval calls with string literals

Example

In

eval("(() => 'foo')");

Out

eval("(function () { return 'foo'; })");

Installation

$ npm install babel-plugin-transform-eval

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-eval"]
}

Via CLI

$ babel --plugins transform-eval script.js

Via Node API

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