msgpackr 1.11.1 → 1.11.2

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/test.js CHANGED
@@ -2161,7 +2161,7 @@
2161
2161
  target[position++] = length >> 8;
2162
2162
  target[position++] = length & 0xff;
2163
2163
  } else {
2164
- let { target, position, targetView } = allocateForWrite(length + 5);
2164
+ var { target, position, targetView } = allocateForWrite(length + 5);
2165
2165
  target[position++] = 0xc6;
2166
2166
  targetView.setUint32(position, length);
2167
2167
  position += 4;