(a: string | number | (string | number)[])
| 25 | function normalize(a: string | string[]): string[]; |
| 26 | function normalize(a: number | number[]): number[]; |
| 27 | function normalize(a: string | number | (string | number)[]): (string | number)[] { |
| 28 | if (!(a instanceof Array)) { |
| 29 | a = [a, a]; |
| 30 | } |
| 31 | return a; |
| 32 | } |
| 33 | |
| 34 | export const graphEdgeVisualStageHandler = createSimpleOverallStageHandler(SERIES_TYPE_GRAPH, graphEdgeVisual); |
| 35 |
no outgoing calls
no test coverage detected
searching dependent graphs…