Files
babel/packages/babel-plugin-proposal-object-rest-spread/test/fixtures/regression/gh-7388/output.js

18 lines
334 B
JavaScript

const _excluded = ["a"];
function fn0(obj0) {
const {
fn1 = (obj1 = {}) => {
const {
fn2 = (obj2 = {}) => {
const {
a
} = obj2,
rest = babelHelpers.objectWithoutProperties(obj2, _excluded);
console.log(rest);
}
} = obj1;
}
} = obj0;
}