From 3a42b45ab72b6a9cc13c28445af98dae7cb0ccfb Mon Sep 17 00:00:00 2001 From: Daniel Huigens Date: Sat, 27 Feb 2021 00:38:13 +0100 Subject: [PATCH] Remove unused config/localStorage module --- src/config/localStorage.js | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 src/config/localStorage.js diff --git a/src/config/localStorage.js b/src/config/localStorage.js deleted file mode 100644 index f3ae4e16..00000000 --- a/src/config/localStorage.js +++ /dev/null @@ -1,34 +0,0 @@ -/** - * @fileoverview Provides functions for storing and retrieving configuration from HTML5 local storage. - * @module config/localStorage - */ - -/** - * This object is used for storing and retrieving configuration from HTML5 local storage. - */ -class LocalStorage { - /** - * Reads the config out of the HTML5 local storage - * and initializes the object config. - * if config is null the default config will be used - */ - read() { - const raw = globalThis.localStorage.getItem("config"); - const cf = (raw === null ? null : JSON.parse(raw)); - if (cf === null) { - this.config = this.default_config; - this.write(); - } else { - this.config = cf; - } - } - - /** - * Writes the config to HTML5 local storage - */ - write() { - globalThis.localStorage.setItem("config", JSON.stringify(this.config)); - } -} - -export default LocalStorage;