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.
- package/dist/varstor-webextension.js +1 -1
- package/dist/varstor.js +1 -1
- package/package.json +1 -1
- package/src/index.js +1 -1
|
@@ -170,7 +170,7 @@ function setupValue (key, value, defaultValue, storageType) {
|
|
|
170
170
|
defaultValue,
|
|
171
171
|
};
|
|
172
172
|
|
|
173
|
-
return createAccessor(key,
|
|
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,
|
|
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.
|
|
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