(url)
| 5 | |
| 6 | const externalFs = { |
| 7 | async readFile(url) { |
| 8 | url = await this.formatUri(url); |
| 9 | return new Promise((resolve, reject) => { |
| 10 | sdcard.read(url, (data) => resolve({ data }), reject); |
| 11 | }); |
| 12 | }, |
| 13 | |
| 14 | async readAsText(url, encoding) { |
| 15 | url = await this.formatUri(url); |
nothing calls this directly
no test coverage detected