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