UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

11 lines 243 B
import { decode } from './decode'; export class Decoder { options; constructor(options) { this.options = options; } decode(patch) { return decode(patch, this.options); } } //# sourceMappingURL=Decoder.js.map