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

Function numberToLetter

src/utils/markdown.ts:310–318  ·  view source on GitHub ↗
(n: number)

Source from the content-addressed store, hash-verified

308}
309
310function numberToLetter(n: number): string {
311 let result = ''
312 while (n > 0) {
313 n--
314 result = String.fromCharCode(97 + (n % 26)) + result
315 n = Math.floor(n / 26)
316 }
317 return result
318}
319
320const ROMAN_VALUES: ReadonlyArray<[number, string]> = [
321 [1000, 'm'],

Callers 1

getListNumberFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected