(client: Client, resource_paths: ReadonlyArray<string>)
| 420 | * @returns {DebugImage[]} |
| 421 | */ |
| 422 | export function applyDebugMetadata(client: Client, resource_paths: ReadonlyArray<string>): DebugImage[] { |
| 423 | const options = client.getOptions(); |
| 424 | |
| 425 | if (!options?.stackParser) { |
| 426 | return []; |
| 427 | } |
| 428 | |
| 429 | return getDebugImagesForResources(options.stackParser, resource_paths); |
| 430 | } |
no test coverage detected