| 784 | } |
| 785 | |
| 786 | interface PkgInfo { |
| 787 | name: string |
| 788 | version: string |
| 789 | } |
| 790 | |
| 791 | function pkgFromUserAgent(userAgent: string | undefined): PkgInfo | undefined { |
| 792 | if (!userAgent) return undefined |
nothing calls this directly
no outgoing calls
no test coverage detected