Henry Zhu 0f823beeb1 Newlines in fixtures (#6044)
* write newlines for fixtures

* rerun fixtures
2017-08-02 15:35:29 -04:00

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"]);