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

Function getBuildAgeMinutes

src/services/api/logging.ts:164–169  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

162}
163
164function getBuildAgeMinutes(): number | undefined {
165 if (!MACRO.BUILD_TIME) return undefined
166 const buildTime = new Date(MACRO.BUILD_TIME).getTime()
167 if (isNaN(buildTime)) return undefined
168 return Math.floor((Date.now() - buildTime) / 60000)
169}
170
171export function logAPIQuery({
172 model,

Callers 2

logAPIQueryFunction · 0.85
logAPISuccessFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected