Skip to content

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”

Combine destructure assignments.

const {firstName} = user;
const {lastName} = user;
const {firstName, lastName} = user;

Object destructuring can often remove an unnecessary temporary reference, as well as making your code more succinct.

From the Airbnb Javascript Style Guide