(items: Array<string>)
| 37 | } |
| 38 | |
| 39 | function* formatTableRow(items: Array<string>) { |
| 40 | yield `| ${items.join(' | ')} |`; |
| 41 | } |
| 42 | |
| 43 | function formatScalar(v: Value): string | undefined { |
| 44 | if (v === undefined) { |
no outgoing calls
no test coverage detected
searching dependent graphs…