@putout/plugin-extract-object-properties
The destructuring assignment makes possible to unpack values from objects into distinct variables.
(c) MDN
Install
npm i @putout/plugin-extract-object-properties -D
Rule
{
"rules": {
"extract-object-properties/equal-deep": "on",
"extract-object-properties/not-equal-deep": "on"
}
}
Equal Deep
❌ Example of incorrect code
const {replaceWith} = a.operate;
const {isIdentifier} = a.types;
✅ Example of correct code
const {
operator,
types,
} = a;
const {replaceWith} = operator;
const {isIdentifier} = types;
Not Equal Deep
❌ Example of incorrect code
const {replaceWith} = a;
const {isIdentifier} = a.types;
✅ Example of correct code
const {replaceWith, types} = a;
const {isIdentifier} = types;
License
MIT