iv-npm 1.6.75 → 1.6.76

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iv-npm",
3
- "version": "1.6.75",
3
+ "version": "1.6.76",
4
4
  "description": "公共通用包",
5
5
  "author": "Mr.Cong",
6
6
  "license": "ISC",
@@ -79,7 +79,7 @@ var arraySumByKey = (arr, key) => {
79
79
  throw new Error(`could not find it '${key}' in arraySumByKey function`);
80
80
  tempArr.push(_e[key] ?? 0);
81
81
  });
82
- return arraySum(tempArr);
82
+ return Number(arraySum(tempArr));
83
83
  };
84
84
  var isArraySumCompared = (arr1, arr2, key1, key2) => {
85
85
  const k1 = key1;