varstor 0.4.6 → 0.5.6

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.
@@ -170,7 +170,7 @@ function setupValue (key, value, defaultValue, storageType) {
170
170
  defaultValue,
171
171
  };
172
172
 
173
- return createAccessor(key, value, storageType);
173
+ return createAccessor(key, storageType);
174
174
  }
175
175
 
176
176
  function setupDependencies(computedValueName, computeFn) {
package/dist/varstor.js CHANGED
@@ -147,7 +147,7 @@ function setupValue (key, value, defaultValue, storageType) {
147
147
  defaultValue,
148
148
  };
149
149
 
150
- return createAccessor(key, value, storageType);
150
+ return createAccessor(key, storageType);
151
151
  }
152
152
 
153
153
  function setupDependencies(computedValueName, computeFn) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "varstor",
3
- "version": "0.4.6",
3
+ "version": "0.5.6",
4
4
  "description": "State manager for web applications and webextensions, employing reactivity, wrapping, and uniting the usage of different storages' values and common variables into a simple universal interface",
5
5
  "license": "MIT",
6
6
  "author": "Igor Morozov <ismorozs@gmail.com>",
package/src/index.js CHANGED
@@ -69,7 +69,7 @@ function setupValue (key, value, defaultValue, storageType) {
69
69
  defaultValue,
70
70
  };
71
71
 
72
- return createAccessor(key, value, storageType);
72
+ return createAccessor(key, storageType);
73
73
  }
74
74
 
75
75
  function setupDependencies(computedValueName, computeFn) {