Code Inspection: Property can be replaced with shorthand
Highlights and provides fixes to convert object properties to ES6 shorthand style.
var obj = {foo:foo}
to
var obj = {foo}
Last modified: 08 May 2020