json-joy
Version:
Collection of libraries for building collaborative editing apps.
16 lines • 693 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.bin = exports.con = exports.line = void 0;
const toLine_1 = require("pojo-dump/lib/toLine");
const json_crdt_patch_1 = require("../json-crdt-patch");
exports.line = toLine_1.toLine;
const con = (value) => {
const formatted = value instanceof Uint8Array
? 'Uint8Array ' + (0, exports.bin)(value)
: `{ ${value instanceof json_crdt_patch_1.Timestamp ? (0, json_crdt_patch_1.printTs)(value) : (0, exports.line)(value)} }`;
return formatted;
};
exports.con = con;
const bin = (value) => '{ ' + ('' + value).replaceAll(',', ', ') + ' }';
exports.bin = bin;
//# sourceMappingURL=print.js.map