(strings)
| 3287 | } |
| 3288 | |
| 3289 | function prettyStringArray(strings) { |
| 3290 | if (typeof strings === 'object') { |
| 3291 | if (strings.length !== undefined) { |
| 3292 | return strings.join(', '); |
| 3293 | } |
| 3294 | else { |
| 3295 | return JSON.stringify(strings); |
| 3296 | } |
| 3297 | } |
| 3298 | else { return strings; } |
| 3299 | } |
| 3300 | |
| 3301 | function initTwoCharsToIntMap(): object { |
| 3302 | const obj = {}; |
no outgoing calls
no test coverage detected