Files
AFFiNE-Mirror/packages/common/infra/src/sync/doc/utils.ts
T
2024-04-17 15:09:09 +08:00

7 lines
169 B
TypeScript

export function isEmptyUpdate(binary: Uint8Array) {
return (
binary.byteLength === 0 ||
(binary.byteLength === 2 && binary[0] === 0 && binary[1] === 0)
);
}