puvox-library 1.0.46 → 1.0.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/library_standard.js +1 -1
- package/package.json +1 -1
package/library_standard.js
CHANGED
@@ -2966,7 +2966,7 @@ const puvox_library =
|
|
2966
2966
|
return (optName in json) ? json[optName] : defaultVal;
|
2967
2967
|
},
|
2968
2968
|
setChild(groupName, optName, val, storageType = 'localStorage'){
|
2969
|
-
const content = this.get(groupName, '{}', storageType
|
2969
|
+
const content = this.get(groupName, '{}', storageType);
|
2970
2970
|
const json = JSON.parse(content);
|
2971
2971
|
json[optName] = val;
|
2972
2972
|
this.set(groupName, JSON.stringify(json), storageType);
|