Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2021-07-27 22:26:09 +00:00
parent 3ba511a8f1
commit 1c4c64199f
175 changed files with 13227 additions and 15136 deletions

View file

@ -39,19 +39,19 @@ var complex1 = {
// eslint-disable-next-line no-undef
new Map(),
new Set(),
// eslint-disable-next-line no-undef, ie11/no-weak-collections
// eslint-disable-next-line no-undef
new WeakMap(),
// eslint-disable-next-line no-undef, ie11/no-weak-collections
new WeakSet()
]
}
}
// eslint-disable-next-line no-undef
new WeakSet(),
],
},
},
};
var complex2 = Object.create(complex1);
var cyclic1 = {
"4a092cd1-225e-4739-8331-d6564aafb702":
"d0cebbe0-23fb-4cc4-8fa0-ef11ceedf12e"
"d0cebbe0-23fb-4cc4-8fa0-ef11ceedf12e",
};
cyclic1.cyclicRef = cyclic1;
@ -59,14 +59,14 @@ var cyclic2 = Object.create(cyclic1);
// add tests
suite
.add("complex objects", function() {
.add("complex objects", function () {
return deepEqual(complex1, complex2);
})
.add("cyclic references", function() {
.add("cyclic references", function () {
return deepEqual(cyclic1, cyclic2);
})
// add listeners
.on("cycle", function(event) {
.on("cycle", function (event) {
// eslint-disable-next-line no-console
console.log(String(event.target));
})