UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

11 lines 467 B
import { toLine } from 'pojo-dump/lib/toLine'; import { printTs, Timestamp } from '../json-crdt-patch'; export const line = toLine; export const con = (value) => { const formatted = value instanceof Uint8Array ? 'Uint8Array ' + bin(value) : `{ ${value instanceof Timestamp ? printTs(value) : line(value)} }`; return formatted; }; export const bin = (value) => '{ ' + ('' + value).replaceAll(',', ', ') + ' }'; //# sourceMappingURL=print.js.map