Fix security vulnerabilities
Ran `npm audit fix`. Even though this fixes a "high" severity vulnerability, all affected packages are dev packages only.
This commit is contained in:
parent
224195bd22
commit
489dbb0e02
34 changed files with 528 additions and 214 deletions
9
node_modules/lodash/_equalObjects.js
generated
vendored
9
node_modules/lodash/_equalObjects.js
generated
vendored
|
|
@ -39,10 +39,11 @@ function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
|
|||
return false;
|
||||
}
|
||||
}
|
||||
// Assume cyclic values are equal.
|
||||
var stacked = stack.get(object);
|
||||
if (stacked && stack.get(other)) {
|
||||
return stacked == other;
|
||||
// Check that cyclic values are equal.
|
||||
var objStacked = stack.get(object);
|
||||
var othStacked = stack.get(other);
|
||||
if (objStacked && othStacked) {
|
||||
return objStacked == other && othStacked == object;
|
||||
}
|
||||
var result = true;
|
||||
stack.set(object, other);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue