Combine-Object-Destructuring
Documentation Index
Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt
Use this file to discover all available pages before exploring further.
Sourcery rule id: combine-object-destructuring
Section titled “Sourcery rule id: combine-object-destructuring”Description
Section titled “Description”Combine destructure assignments.
Before
Section titled “Before”const {firstName} = user;const {lastName} = user;const {firstName, lastName} = user;Explanation
Section titled “Explanation”Object destructuring can often remove an unnecessary temporary reference, as well as making your code more succinct.
From the Airbnb Javascript Style Guide