(enums: string[])
| 58 | } |
| 59 | |
| 60 | export const asTextBulletedList = (enums: string[]): string => |
| 61 | enums.length === 0 ? '' : ('\n - ' + enums.join('\n - ')) |
| 62 | |
| 63 | export const terminationSignals: NodeJS.Signals[] = ['SIGTERM', 'SIGINT', 'SIGHUP', 'SIGBREAK'] |
| 64 |
no outgoing calls
no test coverage detected