We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec3bc7f commit 5c70f21Copy full SHA for 5c70f21
binary/encoder.js
@@ -190,15 +190,6 @@ class BinaryEncoder {
190
utils.splitZigzag64(value);
191
this.writeSplitVarint64(utils.getSplit64Low(), utils.getSplit64High());
192
}
193
-
194
- /**
195
- * Encodes a BigInt into its wire-format, zigzag-encoded varint
196
- * representation and stores it in the buffer.
197
- * @param {bigint} value The BigInt to convert.
198
- */
199
- writeZigzagVarint64BigInt(value) {
200
- this.writeZigzagVarint64String(value.toString());
201
- }
202
203
/**
204
* Encodes a JavaScript decimal string into its wire-format, zigzag-encoded
0 commit comments