UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

15 lines (14 loc) 298 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.konst = exports.Konst = void 0; /** * @category Patch */ class Konst { constructor(val) { this.val = val; } } exports.Konst = Konst; const konst = (val) => new Konst(val); exports.konst = konst;