hifun-tools 1.3.17 → 1.3.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -216,5 +216,7 @@ export function filterSmartLines(list1, list2, groupType, tenant) {
216
216
  const lines = result.map((item) => toStandardUrl(item.line));
217
217
  // 5. 与 list2 求交集
218
218
  const set = new Set(lines);
219
- return list2.filter((v) => set.has(toStandardUrl(v))).map(toStandardUrl);
219
+ console.log("list2.map(toStandardUrl)", list2.map(toStandardUrl));
220
+ console.log(lines, "==", set);
221
+ return list2.map(toStandardUrl).filter((v) => set.has(toStandardUrl(v)));
220
222
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hifun-tools",
3
- "version": "1.3.17",
3
+ "version": "1.3.19",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",