Closed
Description
function foo(x) {
let y = [|x ** (x ** x)|] * 2;
}
Set indentation to 2 spaces and extract a constant to the current scope.
Expected:
function foo(x) {
const newLocal = x ** (x ** x);
let y = newLocal * 2;
}
Actual:
function foo(x) {
const newLocal = x ** (x ** x);
let y = newLocal * 2;
}