Fix dependabot issues

This commit is contained in:
Andrew Eisenberg 2021-10-21 15:24:20 -07:00
parent c89d9bd8b0
commit 531c6ba7c8
705 changed files with 53406 additions and 20466 deletions

6
node_modules/dot-prop/index.js generated vendored
View file

@ -93,7 +93,7 @@ module.exports = {
delete(object, path) {
if (!isObj(object) || typeof path !== 'string') {
return;
return false;
}
const pathArray = getPathSegments(path);
@ -103,13 +103,13 @@ module.exports = {
if (i === pathArray.length - 1) {
delete object[p];
return;
return true;
}
object = object[p];
if (!isObj(object)) {
return;
return false;
}
}
},