From 7bdce37fd3f18e2712e18c4e2c64cac69af0aca1 Mon Sep 17 00:00:00 2001 From: Jakob Stendahl Date: Sun, 19 Sep 2021 19:43:11 +0200 Subject: :boom: Introduce new UI based on svelte, and rewrite a lot of the node app and the NeoRuntime --- src/runtimeData/index.js | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 src/runtimeData/index.js (limited to 'src/runtimeData/index.js') diff --git a/src/runtimeData/index.js b/src/runtimeData/index.js deleted file mode 100644 index 8253140..0000000 --- a/src/runtimeData/index.js +++ /dev/null @@ -1,45 +0,0 @@ -let fse = require("fs-extra"); - -class RuntimeData { - - constructor (DirUserData) { - this.lockFile = DirUserData + "/config/runtime.json"; - this.runtimeVars = {}; - - this.readFile(); - this.saveFile(); - }; - - saveFile() { - fse.outputJsonSync(this.lockFile, this.runtimeVars); - } - - readFile() { - try { - this.runtimeVars = fse.readJsonSync(this.lockFile); - } catch (err) { - this.runtimeVars = {}; - } - } - - set (name, value) { - this.runtimeVars[name] = value; - this.saveFile(); - }; - - get (name) { - this.readFile(); - if (typeof (this.runtimeVars[name]) != undefined) { - return this.runtimeVars[name]; - } else { - return false; - } - } - - unset (name) { - delete this.runtimeVars[name]; - } - -} - -module.exports = RuntimeData; -- cgit v1.2.3