({ name, version }: { name: string, version: string })
| 20 | * @param appMetadata.version version of tool to be counted in instrumentation |
| 21 | */ |
| 22 | export function addAppMetadata({ name, version }: { name: string, version: string }): void { |
| 23 | appMetadata[replaceSlashes(name)] = version; |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Returns the current User-Agent value for instrumentation |
no test coverage detected