The following code doesn’t log the same thing for each doc, and doesn’t log the same thing from one run to the next. The length of the encoded state varies from 16 to 17.
import * as Y from 'yjs'
const yDoc1 = new Y.Doc()
const yMap1 = yDoc1.getMap()
yMap1.set('a', 1)
const yDoc2 = new Y.Doc()
const yMap2 = yDoc2.getMap()
yMap2.set('a', 1)
const yState1 = Y.encodeStateAsUpdate(yDoc1)
const yState2 = Y.encodeStateAsUpdate(yDoc2)
console.log('yState1:', yState1)
console.log('yState2:', yState2)
Is this expected behaviour?