/var/www/cobraambalaj/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose
NameSizeModeActions
index.js4620644editdlrm
_index.mjs3500644editdlrm
Edit: /var/www/cobraambalaj/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose/_index.mjs (350B)
export default function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }