zon-format
Version:
ZON: The most token-efficient serialization format for LLMs - beats CSV, TOON, JSON, and all competitors
10 lines (9 loc) • 303 B
TypeScript
/**
* Binary ZON Format - Main Exports
*/
export * from './constants';
export * from './encoder';
export * from './decoder';
export { encodeBinary, BinaryZonEncoder } from './encoder';
export { decodeBinary, BinaryZonDecoder } from './decoder';
export { TypeMarker, MAGIC_HEADER } from './constants';