Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

babel-plugin-transform-es2015-function-name

babel7.2mMIT6.24.1

Apply ES2015 function.name semantics to all functions

babel-plugin

readme

babel-plugin-transform-es2015-function-name

Apply ES2015 function.name semantics to all functions

Installation

npm install --save-dev babel-plugin-transform-es2015-function-name

Usage

.babelrc

{
  "plugins": ["transform-es2015-function-name"]
}

Via CLI

babel --plugins transform-es2015-function-name script.js

Via Node API

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