(obj: {[key: string]: any})
| 14 | } |
| 15 | |
| 16 | export function sortedProps(obj: {[key: string]: any}) { |
| 17 | return Object.keys(obj).sort(); |
| 18 | } |
| 19 | |
| 20 | export function formatStats(validSamples: MeasureValues[], metricName: string): string { |
| 21 | const samples = validSamples.map((measureValues) => measureValues.values[metricName]); |
no test coverage detected
searching dependent graphs…