UNPKG

@kubb/cli

Version:

Command-line interface for Kubb, enabling easy generation of TypeScript, React-Query, Zod, and other code from OpenAPI specifications.

5 lines (4 loc) 151 B
export function parseHrtimeToSeconds(hrtime: [number, number]): string { const seconds = (hrtime[0] + hrtime[1] / 1e9).toFixed(3) return seconds }