(p: Plugin, platform: string)
| 190 | * Get each asset tag for the given plugin |
| 191 | */ |
| 192 | export function getAssets(p: Plugin, platform: string): any { |
| 193 | return getAllElements(p, platform, 'asset'); |
| 194 | } |
| 195 | |
| 196 | export function getFilePath(config: Config, plugin: Plugin, path: string): string { |
| 197 | if (path.startsWith('node_modules')) { |
no test coverage detected