@putout/plugin-convert-arguments-to-rest
v3.1.0
Published
šPutout plugin adds ability to convert arguments to rest
Downloads
60,078
Maintainers
Readme
@putout/plugin-convert-arguments-to-rest
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