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

Function getHeatmapChar

src/utils/heatmap.ts:183–198  ·  view source on GitHub ↗
(intensity: number)

Source from the content-addressed store, hash-verified

181const claudeOrange = chalk.hex('#da7756')
182
183function getHeatmapChar(intensity: number): string {
184 switch (intensity) {
185 case 0:
186 return chalk.gray('·')
187 case 1:
188 return claudeOrange('░')
189 case 2:
190 return claudeOrange('▒')
191 case 3:
192 return claudeOrange('▓')
193 case 4:
194 return claudeOrange('█')
195 default:
196 return chalk.gray('·')
197 }
198}
199

Callers 1

generateHeatmapFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected