(str, spaces)
| 8 | const CHOICE_USAGE_INDENTATION = 2; |
| 9 | |
| 10 | function indent(str, spaces) { |
| 11 | return str.replaceAll(/^/gm, " ".repeat(spaces)); |
| 12 | } |
| 13 | |
| 14 | function createDefaultValueDisplay(value) { |
| 15 | return Array.isArray(value) |
no outgoing calls
no test coverage detected
searching dependent graphs…