Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 174x 174x 174x | /** * Implements JSON CRDT Patch "binary" serialization format, which is * the most compact binary encoding format. * * Usage: * * ```ts * const encoded = encode(patch); * const decoded = decode(encoded); * ``` * * @module json-crdt-patch/codec/binary */ export * from './Encoder'; export * from './Decoder'; export * from './shared'; |