CoolFace
Apppublic

Umama-at-Bluchip/Quick-UI

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
objectWithoutProperties.js17 linesDownload Raw Back to helpers
1var objectWithoutPropertiesLoose = require("./objectWithoutPropertiesLoose.js");2function _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}17module.exports = _objectWithoutProperties, module.exports.__esModule = true, module.exports["default"] = module.exports;