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/index.js CHANGED
@@ -2099,7 +2099,7 @@
2099
2099
  target[position++] = length >> 8;
2100
2100
  target[position++] = length & 0xff;
2101
2101
  } else {
2102
- let { target, position, targetView } = allocateForWrite(length + 5);
2102
+ var { target, position, targetView } = allocateForWrite(length + 5);
2103
2103
  target[position++] = 0xc6;
2104
2104
  targetView.setUint32(position, length);
2105
2105
  position += 4;