@salespark/toolkit 2.1.18 → 2.1.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.
package/dist/index.d.cts CHANGED
@@ -1,3 +1,5 @@
1
+ export { v4 as uuidv4 } from 'uuid';
2
+
1
3
  /******************************************************
2
4
  * ##: Unique by Key
3
5
  * Returns unique items in an array based on a computed key
package/dist/index.d.ts CHANGED
@@ -1,3 +1,5 @@
1
+ export { v4 as uuidv4 } from 'uuid';
2
+
1
3
  /******************************************************
2
4
  * ##: Unique by Key
3
5
  * Returns unique items in an array based on a computed key
package/dist/index.js CHANGED
@@ -1,3 +1,5 @@
1
+ export { v4 as uuidv4 } from 'uuid';
2
+
1
3
  // src/utils/array.ts
2
4
  function uniqBy(arr, key) {
3
5
  const seen = /* @__PURE__ */ new Set();