Skip to content

Commit

Permalink
Defer other value types to msgpackr
Browse files Browse the repository at this point in the history
  • Loading branch information
kriszyp committed Nov 27, 2023
1 parent 6978440 commit 0310e2f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions struct.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,8 @@ function writeStruct(object, target, encodingStart, position, structures, makeRo
position = updatedPosition;
} else queuedReferences.push(key, value, keyIndex);
break;
default:
queuedReferences.push(key, value, keyIndex);
}
keyIndex++;
}
Expand Down

0 comments on commit 0310e2f

Please sign in to comment.