2.0.0 β€’ Published 11 months ago

@putout/plugin-convert-arguments-to-rest v2.0.0

Weekly downloads
2,409
License
MIT
Repository
github
Last release
11 months ago

@putout/plugin-convert-arguments-to-rest NPM version

The rest parameter syntax allows a function to accept an indefinite number of arguments as an array, providing a way to represent variadic functions in JavaScript.

(c) MDN

🐊Putout plugin adds ability to convert arguments to rest.

Install

npm i @putout/plugin-convert-arguments-to-rest -D

Rule

{
    "rules": {
        "convert-arguments-to-rest": "on"
    }
}

❌ Example of incorrect code

function hello() {
    console.log(arguments);
}

βœ… Example of correct code

function hello(...args) {
    console.log(args);
}

License

MIT