UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

22 lines (21 loc) 559 B
import { printTs } from '../../json-crdt-patch/clock'; export class ExtNode { data; id; constructor(data) { this.data = data; this.id = data.id; } children(callback) { } child() { return this.data; } container() { return this.data.container(); } api = undefined; // ---------------------------------------------------------------- Printable toString(tab, parentId) { return this.name() + (parentId ? ' ' + printTs(parentId) : '') + ' ' + this.data.toString(tab); } }