@glimt/record 0.0.18 → 0.0.20
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/record.cjs +2 -0
- package/dist/record.cjs.map +1 -1
- package/dist/record.js +2 -0
- package/dist/record.js.map +1 -1
- package/dist/record.umd.cjs +2 -0
- package/dist/record.umd.cjs.map +2 -2
- package/dist/record.umd.min.cjs +12 -12
- package/dist/record.umd.min.cjs.map +2 -2
- package/package.json +1 -1
package/dist/record.umd.cjs
CHANGED
|
@@ -9436,9 +9436,11 @@ class MutationBuffer {
|
|
|
9436
9436
|
__publicField(this, "processedNodeManager");
|
|
9437
9437
|
__publicField(this, "unattachedDoc");
|
|
9438
9438
|
__publicField(this, "processMutations", (mutations) => {
|
|
9439
|
+
console.time("processMutations");
|
|
9439
9440
|
for (const mut of mutations) {
|
|
9440
9441
|
this.processMutation(mut);
|
|
9441
9442
|
}
|
|
9443
|
+
console.timeEnd("processMutations");
|
|
9442
9444
|
this.emit();
|
|
9443
9445
|
});
|
|
9444
9446
|
__publicField(this, "emit", () => {
|