Upgrade outdated dependencies

This commit is contained in:
Jamie Kyle 2024-11-14 17:28:55 -08:00 committed by GitHub
commit ca19a7a774
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 2416 additions and 2892 deletions

View file

@ -141,12 +141,12 @@ describe('iterable utilities', () => {
it("doesn't start the iterable until the last minute", () => {
const oneTwoThree = {
[Symbol.iterator]: sinon.fake(() => {
[Symbol.iterator]: sinon.fake((): Iterator<number> => {
let n = 0;
return {
next() {
if (n > 3) {
return { done: true };
return { done: true, value: undefined };
}
n += 1;
return { value: n, done: false };