()
| 101 | }; |
| 102 | |
| 103 | export const assertWeb = () => { |
| 104 | if (isWeb) { |
| 105 | warn(i18n.t('dev_web_not_supported')); |
| 106 | return false; |
| 107 | } |
| 108 | return true; |
| 109 | }; |
| 110 | |
| 111 | export const computeProgress = (received: number, total: number): number => |
| 112 | total > 0 |
no test coverage detected