/var/www/cobraambalaj/node_modules/@babel/runtime/helpers/objectWithoutProperties
NameSizeModeActions
index.js7640644editdlrm
_index.mjs6530644editdlrm
Edit: /var/www/cobraambalaj/node_modules/@babel/runtime/helpers/objectWithoutProperties/index.js (764B)
var objectWithoutPropertiesLoose = require("@babel/runtime/helpers/objectWithoutPropertiesLoose"); function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } module.exports = _objectWithoutProperties; module.exports["default"] = module.exports, module.exports.__esModule = true;