I have a relatively big .csv file and tried readAsLines and readAsLinesSync methods. But these methods reads the entire file. What I really need is a method which skips N lines and returns specified number of lines without wasting too much system resources.
The main reason for this request is that a) the file might be updated after the initial read and b) save some system resources.