From 39dda64556901d8658d43bc309ca897b0f1287ae Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Fri, 8 Dec 2023 11:06:15 -0500 Subject: [PATCH] Fix Set.entries() --- Reflect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Reflect.ts b/Reflect.ts index 62e6080..b571c0d 100644 --- a/Reflect.ts +++ b/Reflect.ts @@ -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(); } };