We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 890e08a commit 123152fCopy full SHA for 123152f
src/ValueRepresentation.js
@@ -668,8 +668,8 @@ class NumericStringRepresentation extends AsciiStringRepresentation {
668
const numStr = stream.readAsciiString(length);
669
const nums = numStr.split(BACKSLASH);
670
671
- // final element in list may have a padding byte for even length, this should be removed as it is not part of
672
- // the original value and prevents max length issues during write
+ // final element in multiplicity array may have a padding byte for even length, remove if this exceeds the max
+ // allowed length to prevent errors during write
673
if (nums.length > 1) {
674
const last = nums[nums.length - 1];
675
0 commit comments