MCPcopy Create free account
hub / github.com/codeaashu/claude-code / getSubParamsAll

Method getSubParamsAll

src/server/web/public/terminal.js:5209–5216  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5207 }
5208 getSubParams(e3) {
5209 const t3 = this._subParamsIdx[e3] >> 8, i3 = 255 & this._subParamsIdx[e3];
5210 return i3 - t3 > 0 ? this._subParams.subarray(t3, i3) : null;
5211 }
5212 getSubParamsAll() {
5213 const e3 = {};
5214 for (let t3 = 0; t3 < this.length; ++t3) {
5215 const i3 = this._subParamsIdx[t3] >> 8, s3 = 255 & this._subParamsIdx[t3];
5216 s3 - i3 > 0 && (e3[t3] = this._subParams.slice(i3, s3));
5217 }
5218 return e3;
5219 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected