* fix object rest in array pattern * update test fixtures * early return * use path.stop() at the right path
16 lines
302 B
JavaScript
16 lines
302 B
JavaScript
const [a, _ref] = x;
|
|
const {
|
|
b
|
|
} = _ref,
|
|
c = babelHelpers.objectWithoutProperties(_ref, ["b"]);
|
|
let [d, _ref2] = x;
|
|
let {
|
|
e
|
|
} = _ref2,
|
|
f = babelHelpers.objectWithoutProperties(_ref2, ["e"]);
|
|
[g, _ref3] = x;
|
|
var {
|
|
h
|
|
} = _ref3,
|
|
i = babelHelpers.objectWithoutProperties(_ref3, ["h"]);
|