MCPcopy Index your code
hub / github.com/codeaashu/claude-code / get

Method get

src/ink/screen.ts:144–146  ·  view source on GitHub ↗

Recover styles from an encoded ID. Strips the bit-0 flag via >>> 1.

(id: number)

Source from the content-addressed store, hash-verified

142
143 /** Recover styles from an encoded ID. Strips the bit-0 flag via >>> 1. */
144 get(id: number): AnsiCode[] {
145 return this.styles[id >>> 1] ?? []
146 }
147
148 /**
149 * Returns the pre-serialized ANSI string to transition from one style to

Callers 4

transitionMethod · 0.95
withInverseMethod · 0.95
withCurrentMatchMethod · 0.95
withSelectionBgMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected