objectWithoutProperties.js 635 B

12345678910111213141516171819
  1. import objectWithoutPropertiesLoose from "./objectWithoutPropertiesLoose.js";
  2. export default function _objectWithoutProperties(source, excluded) {
  3. if (source == null) return {};
  4. var target = objectWithoutPropertiesLoose(source, excluded);
  5. var key, i;
  6. if (Object.getOwnPropertySymbols) {
  7. var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
  8. for (i = 0; i < sourceSymbolKeys.length; i++) {
  9. key = sourceSymbolKeys[i];
  10. if (excluded.indexOf(key) >= 0) continue;
  11. if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
  12. target[key] = source[key];
  13. }
  14. }
  15. return target;
  16. }