structured-fw 0.9.9 → 1.0.0

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.
@@ -230,7 +230,7 @@ export function attributeValueFromString(attributeValue) {
230
230
  return attributeValue;
231
231
  }
232
232
  const valObj = JSON.parse(decoded);
233
- if (!('value' in valObj) || !('key' in valObj)) {
233
+ if (!('key' in valObj)) {
234
234
  return decoded;
235
235
  }
236
236
  return valObj;
package/package.json CHANGED
@@ -19,7 +19,7 @@
19
19
  "license": "MIT",
20
20
  "type": "module",
21
21
  "main": "build/index",
22
- "version": "0.9.9",
22
+ "version": "1.0.0",
23
23
  "scripts": {
24
24
  "develop": "tsc --watch",
25
25
  "startDev": "cd build && nodemon --watch '../app/**/*' --watch '../build/**/*' -e js,html,css index.js",