Skip to content

Latest commit

 

History

History

plugin-convert-apply-to-spread

@putout/plugin-convert-apply-to-spread NPM version

Spread syntax (...) allows an array expression to be expanded in places where zero or more arguments are expected.

(c) MDN

🐊Putout plugin adds ability to convert apply to spread.

Install

npm i @putout/plugin-convert-apply-to-spread -D

Rule

{
    "rules": {
        "convert-apply-to-spread": "on"
    }
}

❌ Example of incorrect code

console.apply(null, arguments);

✅ Example of correct code

console.log(...arguments);

License

MIT