Closed
Description
Proposal
Add a refactoring to inline a local variable. Example:
function generatePipeName(): string {
const hexString = makeRandomHexString(40);
return getPipeName(hexString);
}
The Inline local
refactoring on hexString
would result in:
function generatePipeName(): string {
return getPipeName(makeRandomHexString(40));
}