(lines: string)
| 65 | const NOT_EMPTY_LINE_REGEXP = /^(?!$)/gm; |
| 66 | |
| 67 | export const indentAllLines = (lines: string): string => |
| 68 | lines.replaceAll(NOT_EMPTY_LINE_REGEXP, MESSAGE_INDENT); |
| 69 | |
| 70 | const trim = (string: string) => (string || '').trim(); |
| 71 |
no outgoing calls
no test coverage detected