Use-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: use-object-destructuring
Section titled “Sourcery rule id: use-object-destructuring”Description
Section titled “Description”Prefer object destructuring when accessing and using properties.
Before
Section titled “Before”const firstName = user.firstName;const {firstName} = 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