@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.cjs
CHANGED
|
@@ -9394,9 +9394,11 @@ class MutationBuffer {
|
|
|
9394
9394
|
__publicField(this, "processedNodeManager");
|
|
9395
9395
|
__publicField(this, "unattachedDoc");
|
|
9396
9396
|
__publicField(this, "processMutations", (mutations) => {
|
|
9397
|
+
console.time("processMutations");
|
|
9397
9398
|
for (const mut of mutations) {
|
|
9398
9399
|
this.processMutation(mut);
|
|
9399
9400
|
}
|
|
9401
|
+
console.timeEnd("processMutations");
|
|
9400
9402
|
this.emit();
|
|
9401
9403
|
});
|
|
9402
9404
|
__publicField(this, "emit", () => {
|