readLines(path: string | URL): Enumerable<string>
Read a file as lines of text.
This is a convenience function equivalent to read(path).lines.
Useful for developers who expect a direct readLines function.
path: string | URL
The path of the file.
Enumerable<string>
An Enumerable of text lines.