(url, encoding)
| 12 | }, |
| 13 | |
| 14 | async readAsText(url, encoding) { |
| 15 | url = await this.formatUri(url); |
| 16 | return new Promise((resolve, reject) => { |
| 17 | sdcard.readAsText(url, encoding, resolve, reject); |
| 18 | }); |
| 19 | }, |
| 20 | |
| 21 | async writeFile(filename, data) { |
| 22 | return new Promise(async (resolve, reject) => { |
nothing calls this directly
no test coverage detected