(config: Config, platform: string)
| 234 | } |
| 235 | |
| 236 | async function getWebDir(config: Config, platform: string): Promise<string> { |
| 237 | if (platform === 'ios') { |
| 238 | return config.ios.webDirAbs; |
| 239 | } |
| 240 | if (platform === 'android') { |
| 241 | return config.android.webDirAbs; |
| 242 | } |
| 243 | return ''; |
| 244 | } |
| 245 | |
| 246 | export async function handleCordovaPluginsJS( |
| 247 | cordovaPlugins: Plugin[], |
no outgoing calls
no test coverage detected