Build for 5200b501a8 fix(deps): lock file maintenance ()

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2024-05-04 06:57:17 +00:00
parent b118ebfc99
commit ab29e46cfc
2 changed files with 6 additions and 7 deletions

View file

@ -19368,12 +19368,11 @@ function _extends() {
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];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
if (excluded.indexOf(key) >= 0) continue;
target[key] = source[key];
}
}
return target;
}

File diff suppressed because one or more lines are too long