From 08e6e2739751117b1d05d19c74c3aca968507fdc Mon Sep 17 00:00:00 2001 From: yutent Date: Fri, 27 Dec 2024 15:39:22 +0800 Subject: [PATCH] fixed --- Readme.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Readme.md b/Readme.md index 13077d5..b7ee873 100644 --- a/Readme.md +++ b/Readme.md @@ -32,12 +32,12 @@ ├── Set.prototype │ ├── .union(other) // 合并2个集合 │ ├── .equals(other) // 判断2个集合是否一致(仅元素相同, 无关顺序) -│ ├── .difference(fn) // 返回不存在于另一个集合的所有元素集合 -│ ├── .symmetricDifference(fn) // 返回当前集合与给定集合中, 不同时存在的所有元素集合 -│ ├── .intersection(fn) // 返回共有的元素集合 -│ ├── .isSubsetOf(fn) // 判断当前集合是否为给定集合的子集 -│ ├── .isSupersetOf(fn) // 判断当前集合是否为给定集合的子超集 -│ ├── .isDisjointFrom(fn) // 判断当前集合,是否与给定集合完全不重合 +│ ├── .difference(other) // 返回不存在于另一个集合的所有元素集合 +│ ├── .symmetricDifference(other) // 返回当前集合与给定集合中, 不同时存在的所有元素集合 +│ ├── .intersection(other) // 返回共有的元素集合 +│ ├── .isSubsetOf(other) // 判断当前集合是否为给定集合的子集 +│ ├── .isSupersetOf(other) // 判断当前集合是否为给定集合的子超集 +│ ├── .isDisjointFrom(other) // 判断当前集合,是否与给定集合完全不重合 │ ├── Date │ └── .isDate(any) // 判断对象是否为 日期对象