jiangchengfeiyi-xiaochengxu/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js

13 lines
477 B
JavaScript
Raw Permalink Normal View History

2025-01-02 03:13:50 +00:00
import objectWithoutPropertiesLoose from "./objectWithoutPropertiesLoose.js";
function _objectWithoutProperties(e, t) {
if (null == e) return {};
var o,
r,
i = objectWithoutPropertiesLoose(e, t);
if (Object.getOwnPropertySymbols) {
2025-04-02 15:45:33 +00:00
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
2025-01-02 03:13:50 +00:00
}
return i;
}
export { _objectWithoutProperties as default };