clonus
Version:
Ultimate object cloning library.
15 lines • 547 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CloneContext = void 0;
var CloneContext;
(function (CloneContext) {
function make(options) {
var _a;
return Object.freeze({
cache: new Map(),
config: (_a = options === null || options === void 0 ? void 0 : options.config) !== null && _a !== void 0 ? _a : {}
});
}
CloneContext.make = make;
})(CloneContext = exports.CloneContext || (exports.CloneContext = {}));
//# sourceMappingURL=cloneContext.js.map