* Extract package name from manifest.
(manifestContent: string)
| 57 | * Extract package name from manifest. |
| 58 | */ |
| 59 | function getPackageName(manifestContent: string): string | null { |
| 60 | const match = manifestContent.match(/<manifest[^>]*package="([^"]+)"/); |
| 61 | return match ? match[1] : null; |
| 62 | } |
no outgoing calls
no test coverage detected