(cells: string[])
| 2 | import { calculatePercentageChange, toFixed } from "./util"; |
| 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>( |
no outgoing calls
no test coverage detected