remove duplicated function

This commit is contained in:
Laurent Mazet 2020-09-13 22:39:31 +02:00
parent 830da2b15c
commit 549b176ac9
1 changed files with 0 additions and 5 deletions

View File

@ -57,11 +57,6 @@
Object.prototype.hasOwnProperty.call(localStorage, key);
}
function isSetting(key) {
return Object.prototype.hasOwnProperty.call(Conf, key) ||
Object.prototype.hasOwnProperty.call(localStorage, key);
}
function getSetting(key) {
let type = undefined;
let value = undefined;