botbook/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

10 lines
No EOL
264 B
JavaScript

function _objectWithoutPropertiesLoose(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (e.includes(n)) continue;
t[n] = r[n];
}
return t;
}
export { _objectWithoutPropertiesLoose as default };