(task)
| 696 | if (totalMinutes !== 0) { |
| 697 | if (result.length) result += ' '; |
| 698 | result += totalMinutes + (full ? totalMinutes !== 1 ? ' minutes' : ' minute' : 'm'); |
| 699 | } |
| 700 | if (seconds !== 0) { |
| 701 | if (result.length) result += ' '; |
| 702 | result += (seconds % 1 !== 0 ? seconds.toFixed(1) : seconds) + (full ? seconds !== 1 ? ' seconds' : ' second' : 's'); |
| 703 | } |
| 704 | |
| 705 | return result; |
| 706 | } |
| 707 | |
| 708 | async function traceMaxApkVersionCode (sdkVariant, abiVariant, versionCode, uploadDate, platform) { |
| 709 | const type = sdkVariant !== 'latest' ? abiVariant + ucfirst(sdkVariant) : abiVariant; |
| 710 | const isDefault = platform === 'googlePlay'; |
| 711 | const id = isDefault ? type : platform + '-' + type; |
| 712 | const maxId = isDefault ? 'max' : platform + '-max'; |
no outgoing calls
no test coverage detected