(arr: readonly string[])
| 50 | } |
| 51 | |
| 52 | export function formatArray(arr: readonly string[]): string { |
| 53 | return arr.concat('').join('\n'); |
| 54 | } |
| 55 | |
| 56 | export function getMatches(regex: RegExp, input: string, group = 0): string[] { |
| 57 | const matches: string[] = []; |
no outgoing calls
no test coverage detected