| 1 | /// <reference types="node" /> |
| 2 | |
| 3 | export interface NycOptions { |
| 4 | 'report-dir'?: string |
| 5 | reporter?: string | string[] |
| 6 | extension?: string | string[] |
| 7 | exclude?: string | string[] |
| 8 | excludeAfterRemap?: boolean |
| 9 | all?: boolean |
| 10 | include?: string | string[] |
| 11 | [key: string]: unknown |
| 12 | } |
| 13 | |
| 14 | function stringToArray(prop: string, obj: Record<string, unknown>): void { |
| 15 | if (typeof obj[prop] === 'string') { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…