zcatalyst-cli
Version:
Command Line Tool for CATALYST
17 lines (16 loc) • 423 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const js_js_1 = require("./js.js");
class runtime {
constructor(storeName) {
this.storeName = storeName;
this.store = {};
}
get(path, fallback) {
return js_js_1.JS.get(this.store, path, fallback);
}
set(path, value) {
js_js_1.JS.set(this.store, path, value);
}
}
exports.default = runtime;