(filepath: string, encodingOrOptions?: any)
| 342 | |
| 343 | // Android only |
| 344 | readFileAssets(filepath: string, encodingOrOptions?: any): Promise<string> { |
| 345 | if (!RNFSManager.readFileAssets) { |
| 346 | throw new Error('readFileAssets is not available on this platform'); |
| 347 | } |
| 348 | return readFileGeneric(filepath, encodingOrOptions, RNFSManager.readFileAssets); |
| 349 | }, |
| 350 | |
| 351 | // Android only |
| 352 | readFileRes(filename: string, encodingOrOptions?: any): Promise<string> { |
nothing calls this directly
no test coverage detected