zcatalyst-cli
Version:
Command Line Tool for CATALYST
14 lines (13 loc) • 368 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const js_1 = require("./util_modules/js");
class runtime {
static get(path, fallback) {
return js_1.JS.get(runtime.store, path, fallback);
}
static set(path, value) {
js_1.JS.set(runtime.store, path, value);
}
}
exports.default = runtime;
runtime.store = {};