MCPcopy Index your code
hub / github.com/redis/node-redis / #decodeVerbatimString

Method #decodeVerbatimString

packages/client/lib/RESP/decoder.ts:591–597  ·  view source on GitHub ↗
(type, chunk)

Source from the content-addressed store, hash-verified

589 }
590
591 #decodeVerbatimString(type, chunk) {
592 return this.#continueDecodeVerbatimStringLength(
593 this.#decodeUnsingedNumber.bind(this, 0),
594 type,
595 chunk
596 );
597 }
598
599 #continueDecodeVerbatimStringLength(lengthCb, type, chunk) {
600 const length = lengthCb(chunk);

Callers 2

#decodeTypeValueMethod · 0.95

Tested by

no test coverage detected