MCPcopy
hub / github.com/lowlighter/metrics / encodeBoolean

Method encodeBoolean

source/plugins/community/splatoon/s3si/index.ts:2422–2428  ·  view source on GitHub ↗
(object)

Source from the content-addressed store, hash-verified

2420 this.writeU8(0xc0);
2421 }
2422 encodeBoolean(object) {
2423 if (object === false) {
2424 this.writeU8(0xc2);
2425 } else {
2426 this.writeU8(0xc3);
2427 }
2428 }
2429 encodeNumber(object) {
2430 if (Number.isSafeInteger(object)) {
2431 if (object >= 0) {

Callers 1

doEncodeMethod · 0.95

Calls 1

writeU8Method · 0.95

Tested by

no test coverage detected