(input: string)
| 3 | |
| 4 | export const makeMarkdownTableRow = (cells: string[]) => `| ${cells.join(" | ")} |\n`; |
| 5 | export const makeBold = (input: string) => `**${input}**`; |
| 6 | |
| 7 | export function compareNumericBenchmarks<T extends BenchmarkResult>( |
| 8 | newResults: T[], |
no outgoing calls
no test coverage detected