4.0.0 β’ Published 3 years ago
@putout/plugin-convert-apply-to-spread v4.0.0
@putout/plugin-convert-apply-to-spread 
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 -DRule
{
"rules": {
"convert-apply-to-spread": "on"
}
}β Example of incorrect code
console.apply(null, arguments);β Example of correct code
console.log(...arguments);License
MIT