24 lines
457 B
JavaScript
24 lines
457 B
JavaScript
"use strict";
|
|
|
|
var _objectWithoutProperties = function (obj, keys) {
|
|
var target = {};
|
|
|
|
for (var i in obj) {
|
|
if (keys.indexOf(i) >= 0) continue;
|
|
if (!Object.prototype.hasOwnProperty.call(obj, i)) continue;
|
|
target[i] = obj[i];
|
|
}
|
|
|
|
return target;
|
|
};
|
|
|
|
var x = _objectWithoutProperties(z, []);
|
|
|
|
var x = z.x;
|
|
var y = _objectWithoutProperties(z, ["x"]);
|
|
|
|
(function (_ref) {
|
|
var x = _ref.x;
|
|
var y = _objectWithoutProperties(_ref, ["x"]);
|
|
});
|