mirror of
https://github.com/yjs/yjs.git
synced 2025-12-18 12:47:45 +01:00
5 lines
150 B
JavaScript
5 lines
150 B
JavaScript
|
|
|
||
|
|
export const writeStructToTransaction = (transaction, struct) => {
|
||
|
|
transaction.encodedStructsLen++
|
||
|
|
struct._toBinary(transaction.encodedStructs)
|
||
|
|
}
|