FrontPastel/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoos...

12 lines
348 B
JavaScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
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;
}