修正文档
parent
08e6e27397
commit
200626dcd9
|
@ -36,7 +36,7 @@
|
|||
│ ├── .symmetricDifference(other) // 返回当前集合与给定集合中, 不同时存在的所有元素集合
|
||||
│ ├── .intersection(other) // 返回共有的元素集合
|
||||
│ ├── .isSubsetOf(other) // 判断当前集合是否为给定集合的子集
|
||||
│ ├── .isSupersetOf(other) // 判断当前集合是否为给定集合的子超集
|
||||
│ ├── .isSupersetOf(other) // 判断当前集合是否为给定集合的超集
|
||||
│ ├── .isDisjointFrom(other) // 判断当前集合,是否与给定集合完全不重合
|
||||
│
|
||||
├── Date
|
||||
|
|
|
@ -75,7 +75,7 @@ if (!Set.prototype.union) {
|
|||
}
|
||||
})
|
||||
|
||||
// 判断当前集合是否为给定集合的子超集
|
||||
// 判断当前集合是否为给定集合的超集
|
||||
Object.defineProperty(Set.prototype, 'isSupersetOf', {
|
||||
value(other) {
|
||||
for (let it of other) {
|
||||
|
|
Loading…
Reference in New Issue