• Reads a file line by line and calls the given function for each line. The lineNumber starts at 0.

    See readLineByLineSync for a synchronous version.

    Parameters

    • filePath: string
    • onLine: (line: Buffer, lineNumber: number) => Promise<void>

    Returns Promise<void>