Skip to content

Commit

Permalink
Fix Set.entries()
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuckton committed Dec 13, 2023
1 parent aa18f01 commit 39dda64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Reflect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1725,7 +1725,7 @@ namespace Reflect {
clear(): void { this._map.clear(); }
keys() { return this._map.keys(); }
values() { return this._map.keys(); }
entries() { return this._map.keys(); }
entries() { return this._map.entries(); }
"@@iterator"() { return this.keys(); }
[iteratorSymbol]() { return this.keys(); }
};
Expand Down

0 comments on commit 39dda64

Please sign in to comment.