mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-20 11:36:25 +08:00
7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
export function isEmptyUpdate(binary: Uint8Array) {
|
|
return (
|
|
binary.byteLength === 0 ||
|
|
(binary.byteLength === 2 && binary[0] === 0 && binary[1] === 0)
|
|
);
|
|
}
|