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

Package detail

@putout/plugin-convert-assignment-to-arrow-function

coderaiser37kMIT1.2.2

🐊Putout plugin adds ability convert assignment to arrow function

putout, putout-plugin, putout-plugin-convert, plugin, convert, assignment, arrow-function

readme

@putout/plugin-convert-assignment-to-arrow-function NPM version

The assignment operator (=) is used to assign a value to a variable. The assignment operation evaluates to the assigned value. Chaining the assignment operator is possible in order to assign a single value to multiple variables.

Merged to @putout/plugin-assignment.

An arrow function expression is a compact alternative to a function expression.

(c) MDN

🐊Putout plugin adds ability to convert assignment to arrow function.

Install

npm i @putout/plugin-convert-assignment-to-arrow-function -D

Rule

{
    "rules": {
        "convert-assignment-to-arrow-function": "on"
    }
}

❌ Example of incorrect code

const createRegExp = a = RegExp(a, 'g');

✅ Example of correct code

const createRegExp = (a) => RegExp(a, 'g');

License

MIT