* Read the file into an array buffer (`p`). * * Resolves to either the number of bytes read during the operation or EOF * (`null`) if there was nothing more to read. * * It is possible for a read to successfully return with `0` bytes. This * does not indicate EOF. * * **It is
(p: Uint8Array)
| 317 | * ``` |
| 318 | */ |
| 319 | read(p: Uint8Array): Promise<number | null>; |
| 320 | /** |
| 321 | * Synchronously read from the file into an array buffer (`p`). |
| 322 | * |
no outgoing calls
no test coverage detected