chore: eslint cleanup (#10160)

This commit is contained in:
farfromrefuge
2023-01-09 17:40:20 +00:00
committed by GitHub
parent bff35e5163
commit 0632215793
18 changed files with 97 additions and 71 deletions

View File

@ -95,7 +95,7 @@ export class ObservableArray<T> extends Observable {
}
*[Symbol.iterator]() {
for (let item of this._array) {
for (const item of this._array) {
yield item;
}
}