(filepath: string, encodingOrOptions?: any)
| 307 | }, |
| 308 | |
| 309 | readFile(filepath: string, encodingOrOptions?: any): Promise<string> { |
| 310 | return readFileGeneric(filepath, encodingOrOptions, RNFSManager.readFile); |
| 311 | }, |
| 312 | |
| 313 | read(filepath: string, length: number = 0, position: number = 0, encodingOrOptions?: any): Promise<string> { |
| 314 | var options = { |
nothing calls this directly
no test coverage detected