read(path: string | URL): Enumerable<Uint8Array>
Open a file for reading as an AsyncIterable of byte chunks.
Returns an Enumerable that can be transformed, piped to processes, or converted to lines. The file is automatically closed when iteration completes.
path: string | URL
The path of the file.
An Enumerable of byte chunks.