MCPcopy Index your code
hub / github.com/TanStack/ai / idPart

Function idPart

packages/ai-event-client/src/envelope.ts:73–76  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

71let eventCounter = 0
72
73function idPart(value: unknown): string {
74 if (value === undefined || value === null || value === '') return 'missing'
75 return `value-${encodeURIComponent(String(value))}`
76}
77
78function timestampBucket(timestamp: number): number {
79 return Math.floor(timestamp / 1000) * 1000

Callers 2

getAIDevtoolsDedupeKeyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected