UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

11 lines (10 loc) 208 B
import { decode } from './decode'; export class Decoder { options; constructor(options) { this.options = options; } decode(patch) { return decode(patch, this.options); } }