Files
babel/test/fixtures/transformation/es6-destructuring/es7-object-rest/expected.js
2015-03-19 02:59:44 +11:00

11 lines
240 B
JavaScript

"use strict";
var x = babelHelpers.objectWithoutProperties(z, []);
var x = z.x;
var y = babelHelpers.objectWithoutProperties(z, ["x"]);
(function (_ref) {
var x = _ref.x;
var y = babelHelpers.objectWithoutProperties(_ref, ["x"]);
});