(...values: Array<string | undefined>)
| 80 | /\b(?:const|let|var)\s+([A-Za-z_$][\w$]*)\b|\bfunction\s+([A-Za-z_$][\w$]*)\s*\(|\bclass\s+([A-Za-z_$][\w$]*)\b/g; |
| 81 | |
| 82 | const firstDefined = (...values: Array<string | undefined>): string | undefined => |
| 83 | values.find((value): value is string => value !== undefined); |
| 84 | |
| 85 | const localDestructuredName = (part: string): string | undefined => { |
| 86 | const binding = part |
no outgoing calls
no test coverage detected