修正文档

master
yutent 2024-12-27 15:48:24 +08:00
parent 08e6e27397
commit 200626dcd9
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@
│ ├── .symmetricDifference(other) // 返回当前集合与给定集合中, 不同时存在的所有元素集合 │ ├── .symmetricDifference(other) // 返回当前集合与给定集合中, 不同时存在的所有元素集合
│ ├── .intersection(other) // 返回共有的元素集合 │ ├── .intersection(other) // 返回共有的元素集合
│ ├── .isSubsetOf(other) // 判断当前集合是否为给定集合的子集 │ ├── .isSubsetOf(other) // 判断当前集合是否为给定集合的子集
│ ├── .isSupersetOf(other) // 判断当前集合是否为给定集合的超集 │ ├── .isSupersetOf(other) // 判断当前集合是否为给定集合的超集
│ ├── .isDisjointFrom(other) // 判断当前集合,是否与给定集合完全不重合 │ ├── .isDisjointFrom(other) // 判断当前集合,是否与给定集合完全不重合
├── Date ├── Date

View File

@ -75,7 +75,7 @@ if (!Set.prototype.union) {
} }
}) })
// 判断当前集合是否为给定集合的超集 // 判断当前集合是否为给定集合的超集
Object.defineProperty(Set.prototype, 'isSupersetOf', { Object.defineProperty(Set.prototype, 'isSupersetOf', {
value(other) { value(other) {
for (let it of other) { for (let it of other) {