From 200626dcd958880d7c73306872f2b03b1626101c Mon Sep 17 00:00:00 2001 From: yutent Date: Fri, 27 Dec 2024 15:48:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Readme.md | 2 +- src/lib/set.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index b7ee873..6ae4a97 100644 --- a/Readme.md +++ b/Readme.md @@ -36,7 +36,7 @@ │ ├── .symmetricDifference(other) // 返回当前集合与给定集合中, 不同时存在的所有元素集合 │ ├── .intersection(other) // 返回共有的元素集合 │ ├── .isSubsetOf(other) // 判断当前集合是否为给定集合的子集 -│ ├── .isSupersetOf(other) // 判断当前集合是否为给定集合的子超集 +│ ├── .isSupersetOf(other) // 判断当前集合是否为给定集合的超集 │ ├── .isDisjointFrom(other) // 判断当前集合,是否与给定集合完全不重合 │ ├── Date diff --git a/src/lib/set.js b/src/lib/set.js index 2fdf900..c3704f0 100644 --- a/src/lib/set.js +++ b/src/lib/set.js @@ -75,7 +75,7 @@ if (!Set.prototype.union) { } }) - // 判断当前集合是否为给定集合的子超集 + // 判断当前集合是否为给定集合的超集 Object.defineProperty(Set.prototype, 'isSupersetOf', { value(other) { for (let it of other) {