3.0.0 β’ Published 1 year ago
@putout/plugin-apply-early-return v3.0.0
@putout/plugin-apply-early-return
In short, an early return provides functionality so the result of a conditional statement can be returned as soon as a result is available, rather than wait until the rest of the function is run.
(c) dev.to
πPutout plugin adds ability to apply early return.
Install
npm i @putout/plugin-apply-early-return
Rule
{
"rules": {
"apply-early-return": "on"
}
}
β Example of incorrect code
function get(a) {
let b = 0;
if (a > 0)
b = 5;
else
b = 7;
return b;
}
β Example of correct code
function get(a) {
if (a > 0)
return 5;
return 7;
}
License
MIT