MCPcopy Create free account
hub / github.com/HelloCSV/HelloCSV / generateValidationRunId

Function generateValidationRunId

src/validators/utils.ts:3–6  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1let counter = 0;
2
3export function generateValidationRunId(): string {
4 counter = (counter + 1) % Number.MAX_SAFE_INTEGER;
5 return `${Date.now()}-${counter}`;
6}

Callers 1

dispatchChangeMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected