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.
@@ -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, expireSeconds);
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "puvox-library",
3
- "version": "1.0.46",
3
+ "version": "1.0.47",
4
4
  "description": "library-class-javascript",
5
5
  "main": "library_standard.js",
6
6
  "scripts": {