UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

11 lines (10 loc) 158 B
/** * @category Patch */ export class Konst { val; constructor(val) { this.val = val; } } export const konst = (val) => new Konst(val);