wpfw_ewei_wxapp/@babel/runtime/helpers/objectWithoutProperties.js
2023-02-26 08:10:18 +08:00

13 lines
496 B
JavaScript

var objectWithoutPropertiesLoose = require("./objectWithoutPropertiesLoose");
function _objectWithoutProperties(e, t) {
if (null == e) return {};
var o, r, i = objectWithoutPropertiesLoose(e, t);
if (Object.getOwnPropertySymbols) {
var p = Object.getOwnPropertySymbols(e);
for (r = 0; r < p.length; r++) o = p[r], 0 <= t.indexOf(o) || Object.prototype.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
module.exports = _objectWithoutProperties;