(url)
| 341 | } |
| 342 | |
| 343 | async loadFileContent(url){ |
| 344 | try { |
| 345 | const response = await fetch(url); |
| 346 | let data = await response.text(); |
| 347 | return data; |
| 348 | } catch (e) { |
| 349 | this.closePlugin(); |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | async addThroughDownload(filesArray){ |
| 354 | let { activeFile } = editorManager; |
no test coverage detected