Current behavior
In a restructuring assignment expression, when alias is renamed back to original property's name, it has the full form (const { property: property } = testObject; in the following example):
Proposed behavior
Shorten form of assignment (const { property } = testObject; in this example) - either automatically, or enabled with configuration.
Current behavior In a restructuring assignment expression, when alias is renamed back to original property's name, it has the full form (
const { property: property } = testObject;
in the following example):Proposed behavior Shorten form of assignment (
const { property } = testObject;
in this example) - either automatically, or enabled with configuration.