(platforms)
| 67 | }; |
| 68 | |
| 69 | export function displayNamesForPlatforms(platforms) { |
| 70 | return platforms.map((platform) => |
| 71 | displayNameForPlatform(platform)).join(', '); |
| 72 | } |
| 73 | |
| 74 | // This filters the Cordova platforms from a list of app-level platforms. |
| 75 | // Right now, the only other platforms are the default browser and server |
no test coverage detected
searching dependent graphs…