17 lines
247 B
JavaScript
17 lines
247 B
JavaScript
const defunct = {
|
|
outer: {
|
|
inner: {
|
|
three: 'three',
|
|
four: 'four'
|
|
}
|
|
}
|
|
};
|
|
const {
|
|
outer: {
|
|
inner: {
|
|
three
|
|
}
|
|
}
|
|
} = defunct,
|
|
other = babelHelpers.objectWithoutProperties(defunct.outer.inner, ["three"]);
|