puvox-library 1.0.43 → 1.0.45
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
@@ -2904,7 +2904,7 @@ const puvox_library =
|
|
2904
2904
|
return val;
|
2905
2905
|
}
|
2906
2906
|
} else {
|
2907
|
-
alert(`storageType ${storageType} not supported`);
|
2907
|
+
if (typeof alert !== 'undefined') alert(`storageType ${storageType} not supported`);
|
2908
2908
|
throw new Error(`storageType ${storageType} not supported`);
|
2909
2909
|
}
|
2910
2910
|
},
|