core-3nweb-client-lib 0.29.0 → 0.29.1

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.
@@ -198,7 +198,7 @@ var extAttrs;
198
198
  }
199
199
  extAttrs.readNamedAttr = readNamedAttr;
200
200
  function parseTypeByte(b) {
201
- const type = ((b & 0b11111000) >> 5);
201
+ const type = ((b & 0b11111000) >> 3);
202
202
  const nameLen = ((b & 0b00000100) >> 2) + 1;
203
203
  const contentLen = (b & 0b00000011) + 1;
204
204
  return { type, contentLen, nameLen };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core-3nweb-client-lib",
3
- "version": "0.29.0",
3
+ "version": "0.29.1",
4
4
  "description": "3NWeb client core library, embeddable into different environments",
5
5
  "main": "build/lib-index.js",
6
6
  "types": "build/lib-index.d.ts",