(fileName)
| 92 | } |
| 93 | |
| 94 | async function shouldUseOnlyOffice(fileName) { |
| 95 | const { enabled, exts } = await fetchOnlyOfficeCapsOnce(); |
| 96 | return enabled && exts.has(getExt(fileName)); |
| 97 | } |
| 98 | |
| 99 | function isAbsoluteHttpUrl(u) { return /^https?:\/\//i.test(u || ''); } |
| 100 |
no test coverage detected