@patternbank/core 0.1.0 → 0.1.1
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.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -4
- package/dist/index.d.ts +6 -4
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4758,6 +4758,7 @@ function reviewEventsMatch(a, b) {
|
|
|
4758
4758
|
if (reviewEventKey(a) === reviewEventKey(b)) return true;
|
|
4759
4759
|
if (a.problemId !== b.problemId) return false;
|
|
4760
4760
|
if (a.date !== b.date) return false;
|
|
4761
|
+
if (a.confidence !== b.confidence) return false;
|
|
4761
4762
|
const aTime = timestampMs(a.timestamp);
|
|
4762
4763
|
const bTime = timestampMs(b.timestamp);
|
|
4763
4764
|
if (!aTime || !bTime) return false;
|