(examples: string[])
| 114 | } |
| 115 | |
| 116 | function padExamples(examples: string[]) { |
| 117 | const paddedExamples = [ |
| 118 | ...examples, |
| 119 | ...Array(NUMBER_OF_EXAMPLES_IN_MAPPING - examples.length).fill(''), |
| 120 | ]; |
| 121 | return paddedExamples; |
| 122 | } |
| 123 | |
| 124 | function trimExamplesByCharacterLimit(examples: string[]) { |
| 125 | const trimmedExamples = [...examples]; |
no outgoing calls
no test coverage detected