()
| 16489 | .map(str => new constructor(str)) |
| 16490 | } |
| 16491 | get asMarkdownTable() { |
| 16492 | return this.toMarkdownTableAdvanced(this._getUnionNames(), val => val) |
| 16493 | } |
| 16494 | toMarkdownTableAdvanced(columns, formatFn) { |
| 16495 | const matrix = this._getMatrix(columns) |
| 16496 | const empty = columns.map(col => "-") |
nothing calls this directly
no test coverage detected