(object: any)
| 1960 | } |
| 1961 | |
| 1962 | function constructorName(object: any): string { |
| 1963 | return object?.constructor?.name ?? "Object"; |
| 1964 | } |
| 1965 | |
| 1966 | function moduleName(name: string): string | null { |
| 1967 | return name.includes(".") ? name.split(".")[0] : null; |
no outgoing calls
no test coverage detected